Update source path in Dockerfile due to the org transition

This commit is contained in:
digitalcraftsman 2017-06-13 19:34:20 +02:00 committed by GitHub
parent d531d17b3b
commit 7b99fb9f1c
1 changed files with 3 additions and 3 deletions

View 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