summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 67dd91209cd0c675d34e9ba8d00c80736896e7fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM golang:1.8-alpine

ENV GOPATH /go
ENV USER root

RUN apk update && apk add git make

# pre-install known dependencies before the source, so we don't redownload them whenever the source changes
RUN go get github.com/kardianos/govendor \
 && govendor get github.com/gohugoio/hugo

COPY . $GOPATH/src/github.com/gohugoio/hugo

RUN cd $GOPATH/src/github.com/gohugoio/hugo \
 	&& make install test