mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
Fix Dockerfile
This commit is contained in:
parent
211d20a3c7
commit
95a473e7ec
1 changed files with 7 additions and 7 deletions
14
Dockerfile
14
Dockerfile
|
@ -36,14 +36,14 @@ RUN go get github.com/stretchr/testify/assert \
|
|||
&& go get github.com/yosssi/ace \
|
||||
&& go get github.com/spf13/nitro \
|
||||
&& go get github.com/fortytw2/leaktest \
|
||||
&& go get github.com/fsnotify/fsnotify
|
||||
&& go get github.com/fsnotify/fsnotify \
|
||||
&& go get github.com/bep/gitmap \
|
||||
&& go get github.com/nicksnyder/go-i18n/i18n
|
||||
|
||||
COPY . /go/src/github.com/spf13/hugo
|
||||
RUN go get -d -v github.com/spf13/hugo
|
||||
RUN go install github.com/spf13/hugo
|
||||
|
||||
WORKDIR /go/src/github.com/spf13/hugo
|
||||
RUN go get -d -v
|
||||
RUN go build -o hugo main.go
|
||||
RUN go test github.com/spf13/hugo/...
|
||||
RUN cd /go/src/github.com/spf13/hugo \
|
||||
&& go get -d -v \
|
||||
&& go install \
|
||||
&& go test github.com/spf13/hugo/...
|
||||
|
||||
|
|
Loading…
Reference in a new issue