good morning!!!!

Skip to content
Snippets Groups Projects
Commit 115e7d71 authored by Ali92hm's avatar Ali92hm
Browse files

dockerfile: cp geth to /usr/local/bin

parent dd5ed01f
No related branches found
No related tags found
No related merge requests found
...@@ -4,11 +4,11 @@ ADD . /go-ethereum ...@@ -4,11 +4,11 @@ ADD . /go-ethereum
RUN \ RUN \
apk add --update git go make gcc musl-dev linux-headers && \ apk add --update git go make gcc musl-dev linux-headers && \
(cd go-ethereum && make geth) && \ (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 && \ apk del git go make gcc musl-dev linux-headers && \
rm -rf /go-ethereum && rm -rf /var/cache/apk/* rm -rf /go-ethereum && rm -rf /var/cache/apk/*
EXPOSE 8545 EXPOSE 8545
EXPOSE 30303 EXPOSE 30303
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