dockerfile: Switch base image for final build
authorBrian 'Redbeard' Harrington <redbeard@dead-city.org>
Sat, 18 May 2019 05:39:14 +0000 (22:39 -0700)
committerAnthony Fok <foka@debian.org>
Thu, 23 May 2019 18:49:13 +0000 (12:49 -0600)
Switching the base image for the final build to alpine as it still
provides a minimal interface, but has a mechanism for easily including
relevant CA certificates.  This is currently pinned to a tagged version,
though since none of the underlying mechanisms are used this should
balance both remaining stable, supported for a period of time, and
providing usable functionality.

Resolves #5970
Affects #5056

Dockerfile

index 01132e33e379c0241954293e015987fa0640778b..4728a0f2e202ae98ff8c1ff7ce3b2b01e2f4739f 100755 (executable)
@@ -22,7 +22,8 @@ RUN go install -ldflags '-w -extldflags "-static"' -tags ${BUILD_TAGS}
 
 # ---
 
-FROM scratch
+FROM alpine:3.9
+RUN apk add --no-cache ca-certificates
 COPY --from=build /go/bin/hugo /hugo
 ARG  WORKDIR="/site"
 WORKDIR ${WORKDIR}