diff --git a/rust/debian/Dockerfile b/rust/debian/Dockerfile index 3cffdcc..a00738f 100644 --- a/rust/debian/Dockerfile +++ b/rust/debian/Dockerfile @@ -35,14 +35,14 @@ RUN --mount=type=secret,id=aws,target=/root/.aws/credentials \ # Install sccache for this image \ curl --retry 10 -LsSf "${CARGO_BINSTALL_URL_BASE}/cargo-binstall-${!BUILDARCH}-unknown-linux-musl.tgz" \ | tar -xzC /usr/local/bin/ && \ - cargo binstall -y -q sccache --version 0.3 --no-symlinks --install-path /usr/local/bin \ + cargo binstall -y -q sccache --version 0.5.4 --no-symlinks --install-path /usr/local/bin \ --target=${!BUILDARCH}-unknown-linux-musl && \ echo "installed build build image sccache" && \ if [ -n "$SCCACHE_BUCKET" ]; then export RUSTC_WRAPPER=/usr/local/bin/sccache; fi && \ if [ -z "$SCCACHE_ENDPOINT" ]; then unset SCCACHE_ENDPOINT; fi && \ if [ ! -z ${RUSTC_WRAPPER+x} ]; then echo "starting sccache server"; while sccache --start-server; do echo "starting sccache server"; done; fi; \ # Add sccache cargo-flamegraph, cargo-audit, cargo-cache, etc \ - cargo install -q sccache --root /out/tools --version 0.3.3 \ + cargo install -q sccache --root /out/tools --version 0.5.4 \ --features=azure,s3,openssl/vendored --no-default-features \ --target=${!TARGETARCH}-unknown-linux-musl && \ echo "built build image sccache" && \ @@ -180,7 +180,7 @@ RUN --mount=type=secret,id=aws,target=/root/.aws/credentials \ ## Install static Zlib -ARG ZLIB_VERSION=1.2.13 +ARG ZLIB_VERSION=1.3 RUN --mount=type=secret,id=aws,target=/root/.aws/credentials \ if [ -z "$SCCACHE_BUCKET" ]; then unset CC_WRAPPER; fi; \