Use a Docker container to build hugo
authorSven Dowideit <SvenDowideit@home.org.au>
Mon, 4 Jan 2016 07:27:21 +0000 (17:27 +1000)
committerSteve Francia <steve.francia@gmail.com>
Mon, 4 Jan 2016 17:47:23 +0000 (12:47 -0500)
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
Dockerfile [new file with mode: 0644]
Makefile

diff --git a/Dockerfile b/Dockerfile
new file mode 100644 (file)
index 0000000..db643e2
--- /dev/null
@@ -0,0 +1,47 @@
+FROM golang:1.5
+MAINTAINER Sven Dowideit <SvenDowideit@home.org.au>
+
+ENV GOPATH /go
+ENV USER root
+
+# pre-install known dependencies before the source, so we don't redownload them whenever the source changes
+RUN go get github.com/stretchr/testify/assert \
+       && go get bitbucket.org/pkg/inflect \
+       && go get github.com/BurntSushi/toml \
+       && go get github.com/PuerkitoBio/purell \
+       && go get github.com/opennota/urlesc \
+       && go get github.com/dchest/cssmin \
+       && go get github.com/eknkc/amber \
+       && go get github.com/gorilla/websocket \
+       && go get github.com/kardianos/osext \
+       && go get github.com/miekg/mmark \
+       && go get github.com/mitchellh/mapstructure \
+       && go get github.com/russross/blackfriday \
+       && go get github.com/shurcooL/sanitized_anchor_name \
+       && go get github.com/spf13/afero \
+       && go get github.com/spf13/cast \
+       && go get github.com/spf13/jwalterweatherman \
+       && go get github.com/spf13/cobra \
+       && go get github.com/cpuguy83/go-md2man \
+       && go get github.com/inconshreveable/mousetrap \
+       && go get github.com/spf13/pflag \
+       && go get github.com/spf13/fsync \
+       && go get github.com/spf13/viper \
+       && go get github.com/kr/pretty \
+       && go get github.com/kr/text \
+       && go get github.com/magiconair/properties \
+       && go get golang.org/x/text/transform \
+       && go get golang.org/x/text/unicode/norm \
+       && go get github.com/yosssi/ace \
+       && go get github.com/spf13/nitro \
+       && go get gopkg.in/fsnotify.v1
+
+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/...
+
index 823428fb9dd0a23fc22af7199c76799987c29a1e..46e75fce7ee0713ab202195b7e0aa9bdb5500aed 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -25,3 +25,9 @@ install-gitinfo:
 no-git-info:
        go build -o hugo main.go
 
+docker:
+       docker build -t hugo .
+       docker rm -f hugo-build || true
+       docker run --name hugo-build hugo ls /go/bin
+       docker cp hugo-build:/go/bin/hugo .
+       docker rm hugo-build