good morning!!!!

Skip to content
Snippets Groups Projects
Commit cb809c03 authored by Nick Johnson's avatar Nick Johnson Committed by GitHub
Browse files

Merge pull request #14517 from Ali92hm/master

Improved Dockerfile?
parents dd5ed01f 45421d31
No related branches found
No related tags found
No related merge requests found
......@@ -4,11 +4,12 @@ ADD . /go-ethereum
RUN \
apk add --update git go make gcc musl-dev linux-headers && \
(cd go-ethereum && make geth) && \
cp go-ethereum/build/bin/geth /geth && \
cp go-ethereum/build/bin/geth /usr/local/bin/ && \
apk del git go make gcc musl-dev linux-headers && \
rm -rf /go-ethereum && rm -rf /var/cache/apk/*
EXPOSE 8545
EXPOSE 30303
EXPOSE 30303/udp
ENTRYPOINT ["/geth"]
ENTRYPOINT ["geth"]
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