From af095a71e7213a2359d9ceeb124d3883bab839b0 Mon Sep 17 00:00:00 2001 From: 1138-4EB <1138-4EB@users.noreply.github.com> Date: Sun, 29 Jul 2018 20:20:06 +0100 Subject: [PATCH] add ca-certificates to scratch docker image (#478) Former-commit-id: aa531b84a518c6e4b48edc1231f663c316f36c23 [formerly 2b724b5f31ddbd39b1f9fb6df7ed4cff481b30db] [formerly 8f803379488acbc1149161b7df0eed4455ba876f [formerly 4e454f4bd2a20f2c84810f69c9051ee898a162cf]] Former-commit-id: 1579bebb11497abcdb83a4141af9da8bf681f8a9 [formerly c3943d81a5e4e66b4c1407ea37f30044b65ce593] Former-commit-id: b26678c4727c4ad42463e25c53b6982efc18330c --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 76f21535..024f6be1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM golang:alpine COPY . /go/src/github.com/filebrowser/filebrowser WORKDIR /go/src/github.com/filebrowser/filebrowser -RUN apk add --no-cache git curl && \ +RUN apk --no-cache --update upgrade && apk --no-cache add ca-certificates git curl && \ curl -fsSL -o /usr/local/bin/dep https://github.com/golang/dep/releases/download/v0.4.1/dep-linux-amd64 && \ chmod +x /usr/local/bin/dep RUN dep ensure -vendor-only @@ -14,6 +14,7 @@ RUN mv filebrowser /go/bin/filebrowser FROM scratch COPY --from=0 /go/bin/filebrowser /filebrowser +COPY --from=0 /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt VOLUME /tmp VOLUME /srv