Merge pull request #834 from prometheus/improve-dockerfile-deps

Simplify Go dependency handling in Dockerfile.
This commit is contained in:
Julius Volz 2015-06-24 00:04:02 +02:00
commit 30fc04b240
2 changed files with 2 additions and 3 deletions

View File

@ -7,9 +7,8 @@ COPY . /go/src/github.com/prometheus/prometheus
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/$REPO_PATH \
&& $GOPATH/bin/godep restore && go get -d \
&& cp -a ./Godeps/_workspace/* "$GOPATH" \
&& go build -ldflags " \
-X $REPO_PATH/version.Version $(cat version/VERSION) \
-X $REPO_PATH/version.Revision $(git rev-parse --short HEAD) \

View File

@ -66,7 +66,7 @@ $(SELFLINK): $(GOPATH)
ln -s $(MAKEFILE_DIR) $@
$(GOPATH):
cp -a $(MAKEFILE_DIR)/Godeps/_workspace $(GOPATH)
cp -a $(MAKEFILE_DIR)/Godeps/_workspace "$(GOPATH)"
dependencies: $(GOCC) | $(SELFLINK)