mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
606d6a8c91
Reduce Docker image size from 428 MB to 277 MB. See #3674
25 lines
518 B
Docker
25 lines
518 B
Docker
FROM golang:alpine3.6
|
|
|
|
ENV GOPATH /go
|
|
|
|
RUN \
|
|
adduser -h /site -s /sbin/nologin -u 1000 -D hugo && \
|
|
apk add --no-cache \
|
|
dumb-init \
|
|
git && \
|
|
go get github.com/kardianos/govendor && \
|
|
govendor get github.com/gohugoio/hugo && \
|
|
cd $GOPATH/src/github.com/gohugoio/hugo && \
|
|
go install && \
|
|
cd $GOPATH && \
|
|
rm -rf pkg src .cache bin/govendor && \
|
|
apk del --no-cache git go
|
|
|
|
USER hugo
|
|
WORKDIR /site
|
|
VOLUME /site
|
|
EXPOSE 1313
|
|
|
|
ENTRYPOINT ["/usr/bin/dumb-init", "--", "hugo"]
|
|
CMD [ "--help" ]
|
|
|