From: digitalcraftsman Date: Tue, 13 Jun 2017 17:34:20 +0000 (+0200) Subject: Update source path in Dockerfile due to the org transition X-Git-Tag: v0.23~18 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7b99fb9f;p=brevno-suite%2Fhugo Update source path in Dockerfile due to the org transition --- diff --git a/Dockerfile b/Dockerfile index f74e6e5b..67dd9120 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,9 +7,9 @@ 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/spf13/hugo + && govendor get github.com/gohugoio/hugo -COPY . $GOPATH/src/github.com/spf13/hugo +COPY . $GOPATH/src/github.com/gohugoio/hugo -RUN cd $GOPATH/src/github.com/spf13/hugo \ +RUN cd $GOPATH/src/github.com/gohugoio/hugo \ && make install test