Merge pull request #801 from sdurrheimer/master

Fix Dockerfile with recent embed-static.sh/go-bindata change
This commit is contained in:
Julius Volz 2015-06-12 18:22:49 +02:00
commit 5e50addc87

View file

@ -1,15 +1,14 @@
FROM alpine:edge
FROM alpine:3.2
MAINTAINER The Prometheus Authors <prometheus-developers@googlegroups.com>
ENV GOPATH /go
COPY . /go/src/github.com/prometheus/prometheus
RUN apk add --update -t build-deps go git mercurial vim \
RUN apk add --update -t build-deps go git mercurial \
&& apk add -u musl && rm -rf /var/cache/apk/* \
&& go get github.com/tools/godep \
&& cd /go/src/github.com/prometheus/prometheus \
&& $GOPATH/bin/godep restore && go get -d \
&& ./scripts/embed-static.sh web/static web/templates | gofmt > web/blob/files.go \
&& go build -ldflags " \
-X main.buildVersion $(cat VERSION) \
-X main.buildRevision $(git rev-parse --short HEAD) \