Update source path in Dockerfile due to the org transition
authordigitalcraftsman <digitalcraftsman@users.noreply.github.com>
Tue, 13 Jun 2017 17:34:20 +0000 (19:34 +0200)
committerGitHub <noreply@github.com>
Tue, 13 Jun 2017 17:34:20 +0000 (19:34 +0200)
Dockerfile

index f74e6e5bc19bd23ad6025b2f69dece6009d16663..67dd91209cd0c675d34e9ba8d00c80736896e7fc 100644 (file)
@@ -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