mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 07:36:44 +00:00
Standardize Dockerfile between projects (Heimdall) and remove not necessary tini package.
7 lines
140 B
Docker
7 lines
140 B
Docker
FROM alpine:3.14
|
|
|
|
RUN apk add --no-cache ca-certificates
|
|
COPY bor /usr/local/bin/
|
|
|
|
EXPOSE 8545 8546 8547 30303 30303/udp
|
|
ENTRYPOINT ["bor"]
|