mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
c7646551be
It's pointless to set `/bin/sh` as entrypoint. `/bin/sh` is already the default command, and on the top of that, setting `/bin/sh` as entrypoint ignores the command.
15 lines
389 B
Docker
15 lines
389 B
Docker
FROM golang:1.8-alpine
|
|
|
|
ENV GOPATH /go
|
|
ENV USER root
|
|
|
|
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
|
|
|
|
COPY . $GOPATH/src/github.com/spf13/hugo
|
|
|
|
RUN cd $GOPATH/src/github.com/spf13/hugo \
|
|
&& make install test
|