URI: 
       Update source path in Dockerfile due to the org transition - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 7b99fb9f1ca8381457afe9d8e953a388b8ada182
   DIR parent d531d17b3be0b14faf4934611e01ac3289e37835
  HTML Author: digitalcraftsman <digitalcraftsman@users.noreply.github.com>
       Date:   Tue, 13 Jun 2017 19:34:20 +0200
       
       Update source path in Dockerfile due to the org transition
       Diffstat:
         M Dockerfile                          |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
   DIR diff --git 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