ref: 41974303f3e5e6d7deb87a791aba512dbf1b9c59
parent: 6b3f1a10028c81b776a5797bbd02c86957f8f042
author: Brian 'Redbeard' Harrington <[email protected]>
date: Fri May 17 18:39:14 EDT 2019
dockerfile: Switch base image for final build 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
--- a/Dockerfile
+++ b/Dockerfile
@@ -22,7 +22,8 @@
# ---
-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}