Skip to content

Commit 115e7d7

Browse files
committed
dockerfile: cp geth to /usr/local/bin
1 parent dd5ed01 commit 115e7d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ ADD . /go-ethereum
44
RUN \
55
apk add --update git go make gcc musl-dev linux-headers && \
66
(cd go-ethereum && make geth) && \
7-
cp go-ethereum/build/bin/geth /geth && \
7+
cp go-ethereum/build/bin/geth /usr/local/bin/ && \
88
apk del git go make gcc musl-dev linux-headers && \
99
rm -rf /go-ethereum && rm -rf /var/cache/apk/*
1010

1111
EXPOSE 8545
1212
EXPOSE 30303
1313

14-
ENTRYPOINT ["/geth"]
14+
ENTRYPOINT ["geth"]

0 commit comments

Comments
 (0)