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