Drop Cargo registry caches after cargo-audit installation

This commit is contained in:
Vlad Frolov 2018-09-17 14:04:29 +03:00 committed by GitHub
parent 14ff0ce4bf
commit 5869f71858
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -115,7 +115,8 @@ ENV OPENSSL_DIR=/usr/local/musl/ \
# Install some useful Rust tools from source. This will use the static linking
# toolchain, but that should be OK.
RUN cargo install -f cargo-audit
RUN cargo install -f cargo-audit && \
rm -rf /home/rust/.cargo/registry/
# Expect our source code to live in /home/rust/src. We'll run the build as
# user `rust`, which will be uid 1000, gid 1000 outside the container.