From 0a79c1a5b5624a6627a5a9d3c23d29b2f101d741 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Wed, 24 Apr 2019 00:26:23 +0200 Subject: [PATCH] Add future update --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index ba918da..f785a79 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,6 +28,11 @@ RUN cargo build --release FROM alpine:latest RUN apk --no-cache add --update git + +# once we don't need a git binary anymore, this should be enough +# FROM scratch +# COPY --from=linuxkit/ca-certificates:v0.7 / / + COPY --from=builder /home/rust/src/target/x86_64-unknown-linux-musl/release/hoc /hoc ENTRYPOINT ["/hoc"]