Files
ethereum-rpc-docker/nimbus/Dockerfile
Sebastian 3c5121e423 nana
2023-08-26 06:29:31 +02:00

11 lines
265 B
Docker

ARG UPSTREAM_VERSION
FROM statusim/nimbus-eth2:multiarch-${UPSTREAM_VERSION}
USER root
RUN apt update && apt install curl jq -y
COPY entrypoint.sh /usr/bin/entrypoint.sh
COPY auth-token /home/user/nimbus-eth2/build/data/auth-token
ENTRYPOINT [ "entrypoint.sh" ]