We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd5ed01 commit 115e7d7Copy full SHA for 115e7d7
Dockerfile
@@ -4,11 +4,11 @@ ADD . /go-ethereum
4
RUN \
5
apk add --update git go make gcc musl-dev linux-headers && \
6
(cd go-ethereum && make geth) && \
7
- cp go-ethereum/build/bin/geth /geth && \
+ cp go-ethereum/build/bin/geth /usr/local/bin/ && \
8
apk del git go make gcc musl-dev linux-headers && \
9
rm -rf /go-ethereum && rm -rf /var/cache/apk/*
10
11
EXPOSE 8545
12
EXPOSE 30303
13
14
-ENTRYPOINT ["/geth"]
+ENTRYPOINT ["geth"]
0 commit comments