mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +00:00
10 lines
207 B
Docker
10 lines
207 B
Docker
FROM alpine:3.14
|
|
|
|
RUN set -x \
|
|
&& apk add --update --no-cache \
|
|
ca-certificates \
|
|
&& rm -rf /var/cache/apk/*
|
|
COPY bor /usr/local/bin/
|
|
|
|
EXPOSE 8545 8546 8547 30303 30303/udp
|
|
ENTRYPOINT ["bor"]
|