Browse Source

Fix Dockerfile with recent embed-static.sh/go-bindata change

pull/801/head
Steve Durrheimer 10 years ago
parent
commit
f61ffb4fc0
  1. 5
      Dockerfile

5
Dockerfile

@ -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) \

Loading…
Cancel
Save