mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
20e882078e
Upstreams the improvement from the maticnetwork/erigon fork to add a goreleaser workflow that will build and release a docker image for both arm and amd64.
9 lines
207 B
Docker
9 lines
207 B
Docker
FROM alpine:3.14
|
|
|
|
RUN apk add --no-cache ca-certificates && \
|
|
mkdir -p /etc/erigon
|
|
COPY erigon /usr/local/bin/
|
|
|
|
EXPOSE 8545 8551 8546 30303 30303/udp 42069 42069/udp 8080 9090 6060
|
|
ENTRYPOINT ["erigon"]
|