mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
41974303f3
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
33 lines
743 B
Docker
Executable file
33 lines
743 B
Docker
Executable file
# GitHub: https://github.com/gohugoio
|
|
# Twitter: https://twitter.com/gohugoio
|
|
# Website: https://gohugo.io/
|
|
|
|
FROM golang:1.11-stretch AS build
|
|
|
|
|
|
WORKDIR /go/src/github.com/gohugoio/hugo
|
|
RUN apt-get install \
|
|
git gcc g++ binutils
|
|
COPY . /go/src/github.com/gohugoio/hugo/
|
|
ENV GO111MODULE=on
|
|
RUN go get -d .
|
|
|
|
ARG CGO=0
|
|
ENV CGO_ENABLED=${CGO}
|
|
ENV GOOS=linux
|
|
|
|
# default non-existent build tag so -tags always has an arg
|
|
ARG BUILD_TAGS="99notag"
|
|
RUN go install -ldflags '-w -extldflags "-static"' -tags ${BUILD_TAGS}
|
|
|
|
# ---
|
|
|
|
FROM alpine:3.9
|
|
RUN apk add --no-cache ca-certificates
|
|
COPY --from=build /go/bin/hugo /hugo
|
|
ARG WORKDIR="/site"
|
|
WORKDIR ${WORKDIR}
|
|
VOLUME ${WORKDIR}
|
|
EXPOSE 1313
|
|
ENTRYPOINT [ "/hugo" ]
|
|
CMD [ "--help" ]
|