good morning!!!!

Skip to content
Snippets Groups Projects
Commit 87b8254d authored by Nick Johnson's avatar Nick Johnson Committed by Jeffrey Wilcke
Browse files

Dockerfile: Add git dependency to Dockerfile (#3295)

parent 20eab801
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment