From f848e61f6ad7e74729b620699ce205c36f7ac7ea Mon Sep 17 00:00:00 2001 From: Philipp Hofer Date: Tue, 13 May 2025 07:34:19 +0200 Subject: [PATCH] new docker image --- rust-latest/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rust-latest/Dockerfile b/rust-latest/Dockerfile index da4b880..69866f9 100644 --- a/rust-latest/Dockerfile +++ b/rust-latest/Dockerfile @@ -14,6 +14,9 @@ RUN apt-get install -y curl && \ curl -sL https://deb.nodesource.com/setup_23.x | bash - && \ apt-get install -y nodejs +# openssl for openssl-sys +RUN apt-get install -y libssl-dev + # playwright RUN npx playwright install --with-deps @@ -21,6 +24,9 @@ RUN npx playwright install --with-deps RUN rustup target add x86_64-unknown-linux-musl RUN apt-get install -y -qq pkg-config sshpass musl musl-tools curl gnupg libssl-dev +# to enable cargo upgrade +RUN cargo install cargo-edit + # TEMPORARY act workaround (otherwise gitea cache is not working) RUN apt-get install -y zstd