fixturenet-eth-stacks/stack-orchestrator/container-build/cerc-lighthouse/Dockerfile
Thomas E Lackey 99ea065389
All checks were successful
Ethereum Fixturenet Stack Test / Run Ethereum Fixturenet stack test (push) Successful in 24m49s
Use geth v1.14 (#7)
Co-authored-by: David Boreham <david@bozemanpass.com>
Reviewed-on: #7
2024-05-31 18:07:20 +00:00

11 lines
263 B
Docker

FROM sigp/lighthouse:v5.1.2
RUN apt-get update && apt-get -y upgrade \
&& apt-get -y install bash netcat curl less jq wget \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /root
ADD start-lighthouse.sh .
ENTRYPOINT [ "./start-lighthouse.sh" ]