From 5ec2b2c3ffcd793a6dbf0246b7acf8077457e1fb Mon Sep 17 00:00:00 2001 From: Frederik Ring Date: Fri, 25 Feb 2022 08:54:07 +0100 Subject: [PATCH] Install ca-certs with --no-cache to reduce image size --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7900221..7eea7b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ FROM alpine:3.15 WORKDIR /root -RUN apk add --update ca-certificates +RUN apk add --update --no-cache ca-certificates COPY --from=builder /app/cmd/backup/backup /usr/bin/backup