Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dockerfile - github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 56113195b44c7c859af492d4303bd07a4d0443a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
FROM golang:1.6.2
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 github.com/kyokomi/emoji \
	&& go get github.com/bep/inflect \
	&& go get github.com/BurntSushi/toml \
	&& go get github.com/PuerkitoBio/purell \
	&& go get github.com/PuerkitoBio/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 github.com/fortytw2/leaktest \
	&& go get github.com/fsnotify/fsnotify

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/...