fixturenet-eth-stacks/stack-orchestrator/container-build/cerc-lighthouse/Dockerfile
Thomas E Lackey 84f9fed18b
All checks were successful
Ethereum Fixturenet Stack Test / Run Ethereum Fixturenet stack test (push) Successful in 22m9s
Use old genesis. (#4)
Reviewed-on: #4
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-05-01 22:26:22 +00:00

10 lines
219 B
Docker

ARG TAG_SUFFIX="-modern"
FROM sigp/lighthouse:v4.3.0${TAG_SUFFIX}
RUN apt-get update; apt-get install bash netcat curl less jq wget -y;
WORKDIR /root/
ADD start-lighthouse.sh .
ENTRYPOINT [ "./start-lighthouse.sh" ]