From ab4bfcb23e261ce7a6ba4b0e31b78bc675812e18 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Jun 2020 21:09:41 +0000 Subject: [PATCH] Run update.sh --- rust/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/README.md b/rust/README.md index 0f7cb276a..9e080bb0f 100644 --- a/rust/README.md +++ b/rust/README.md @@ -91,7 +91,7 @@ COPY . . RUN cargo install --path . FROM debian:buster-slim -RUN apt-get update && apt-get install -y extra-runtime-dependencies +RUN apt-get update && apt-get install -y extra-runtime-dependencies && rm -rf /var/lib/apt/lists/* COPY --from=builder /usr/local/cargo/bin/myapp /usr/local/bin/myapp CMD ["myapp"] ```