Merge pull request #379 from mozilla-services/chore/378

chore: force cargo install to use Cargo.lock
This commit is contained in:
Philip Jenvey 2019-12-16 13:51:11 -08:00 committed by GitHub
commit 9809cc5439
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ RUN apt-get -q update && \
RUN \
cargo --version && \
rustc --version && \
cargo install --path . --root /app
cargo install --path . --locked --root /app
FROM debian:buster-slim
WORKDIR /app