Run update.sh

This commit is contained in:
Docker Library Bot 2020-06-25 21:09:41 +00:00
parent 97ba441f46
commit ab4bfcb23e
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ COPY . .
RUN cargo install --path . RUN cargo install --path .
FROM debian:buster-slim 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 COPY --from=builder /usr/local/cargo/bin/myapp /usr/local/bin/myapp
CMD ["myapp"] CMD ["myapp"]
``` ```