Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Jamet <tjamet@users.noreply.github.com>2017-09-07 16:08:56 +0300
committerAnthony Fok <foka@debian.org>2017-09-25 19:28:13 +0300
commit09d960f17396eb7fd2c8fe6527db9503d59f0b4f (patch)
tree9a631bb77e0c34d71ce66a365b637e3b6f1f84fa /Dockerfile
parenta3a3f5b86114213a23337499551f000662b26022 (diff)
Update Dockerfile to benefit build cache
Docker has recently introduces buikld-stages (as of version 17.05) Build stages allows to benefit the docker build cache as well as reducing the size of the resulting image c.f. https://docs.docker.com/engine/userguide/eng-image/multistage-build/ This change allows to have faster builds when running `docker build` several times after changing some little code Signed-off-by: Thibault Jamet <tjamet@users.noreply.github.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile32
1 files changed, 10 insertions, 22 deletions
diff --git a/Dockerfile b/Dockerfile
index f8ec73a86..ca165a986 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,30 +1,18 @@
-FROM alpine:3.6
+FROM golang:1.9.0-alpine3.6 AS build
-ENV GOPATH /go
-ENV PATH $GOPATH/bin:$PATH
+RUN apk add --no-cache --virtual git musl-dev
+RUN go get github.com/kardianos/govendor
+RUN govendor get github.com/gohugoio/hugo
+WORKDIR /go/src/github.com/gohugoio/hugo
+RUN rm -f $GOPATH/bin/hugo
+RUN go install -ldflags '-s -w'
+FROM alpine:3.6
RUN \
adduser -h /site -s /sbin/nologin -u 1000 -D hugo && \
apk add --no-cache \
- dumb-init && \
- apk add --no-cache --virtual .build-deps \
- gcc \
- musl-dev \
- go \
- git && \
- mkdir -p \
- ${GOPATH}/bin \
- ${GOPATH}/pkg \
- ${GOPATH}/src && \
- go get github.com/kardianos/govendor && \
- govendor get github.com/gohugoio/hugo && \
- cd $GOPATH/src/github.com/gohugoio/hugo && \
- rm -f $GOPATH/bin/hugo && \
- go install -ldflags '-s -w' && \
- cd $GOPATH && \
- rm -rf pkg src .cache bin/govendor && \
- apk del .build-deps
-
+ dumb-init
+COPY --from=build /go/bin/hugo /bin/hugo
USER hugo
WORKDIR /site
VOLUME /site