summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 43284e4d934968528198547b5dd8c45f94ee37f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM golang:alpine3.6

ENV GOPATH /go

RUN \
  adduser -h /site -s /sbin/nologin -u 1000 -D hugo && \
  apk add --no-cache dumb-init && \
  apk add --no-cache --virtual .build-deps \
    git \
    make && \
  go get github.com/kardianos/govendor && \
  govendor get github.com/gohugoio/hugo && \
  cd $GOPATH/src/github.com/gohugoio/hugo && \
  make install test && \
  rm -rf $GOPATH/src/* && \
  apk del .build-deps

USER hugo

WORKDIR /site

EXPOSE 1313

ENTRYPOINT ["/usr/bin/dumb-init", "--", "hugo"]

CMD [ "--help" ]