Merge pull request #56 from frol/patch-2

Drop Cargo registry caches after cargo-audit installation
This commit is contained in:
Eric Kidd 2018-10-12 08:34:04 -04:00 committed by GitHub
commit 17a680a0eb
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.