Files
ethereum-rpc-docker/nimbus/Dockerfile
Sebastian 36047f8b70 fix
2025-03-08 10:43:33 +01:00

11 lines
241 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 /auth-token
ENTRYPOINT [ "/usr/bin/entrypoint.sh" ]