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.
2 parents dd5ed01 + 45421d3 commit cb809c0Copy full SHA for cb809c0
Dockerfile
@@ -4,11 +4,12 @@ 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
+EXPOSE 30303/udp
14
-ENTRYPOINT ["/geth"]
15
+ENTRYPOINT ["geth"]
0 commit comments