1
0
Fork 0
mirror of https://github.com/gohugoio/hugo.git synced 2025-05-01 22:57:14 +00:00

Fix Docker build

The present Dockerfile in master does not build a Hugo container. The
build container prematurely exits because `dep ensure` can not locate
`Gopkg.toml` due to the source files not being copied/added to the
container prior to running this command. The minimal change require
to resolve the issue is merely move the ADD source before the RUN dep.

Fixes 
Resolves 
This commit is contained in:
Ryan Skoblenick 2018-01-31 01:33:03 -05:00 committed by Bjørn Erik Pedersen
parent fe40823de0
commit a34213f0b5

View file

@ -4,8 +4,8 @@ RUN apk add --no-cache --virtual git musl-dev
RUN go get github.com/golang/dep/cmd/dep
WORKDIR /go/src/github.com/gohugoio/hugo
RUN dep ensure
ADD . /go/src/github.com/gohugoio/hugo/
RUN dep ensure
RUN go install -ldflags '-s -w'
FROM alpine:3.6