Commit 87b8254d authored by Nick Johnson's avatar Nick Johnson Committed by Jeffrey Wilcke

Dockerfile: Add git dependency to Dockerfile (#3295)

parent 20eab801
...@@ -2,10 +2,10 @@ FROM alpine:3.3 ...@@ -2,10 +2,10 @@ FROM alpine:3.3
ADD . /go-ethereum ADD . /go-ethereum
RUN \ RUN \
apk add --update go make gcc musl-dev && \ apk add --update git go make gcc musl-dev && \
(cd go-ethereum && make geth) && \ (cd go-ethereum && make geth) && \
cp go-ethereum/build/bin/geth /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/* rm -rf /go-ethereum && rm -rf /var/cache/apk/*
EXPOSE 8545 EXPOSE 8545
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment