Skip to content

Commit

Permalink
Dockerfile: Add git dependency to Dockerfile (ethereum#3295)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arachnid authored and obscuren committed Nov 17, 2016
1 parent 20eab80 commit 87b8254
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ FROM alpine:3.3

ADD . /go-ethereum
RUN \
apk add --update go make gcc musl-dev && \
apk add --update git go make gcc musl-dev && \
(cd go-ethereum && make geth) && \
cp go-ethereum/build/bin/geth /geth && \
apk del go make gcc musl-dev && \
apk del git go make gcc musl-dev && \
rm -rf /go-ethereum && rm -rf /var/cache/apk/*

EXPOSE 8545
Expand Down

0 comments on commit 87b8254

Please sign in to comment.