fixturenet-eth-stacks/stack-orchestrator/container-build/cerc-lighthouse/Dockerfile

10 lines
219 B
Docker
Raw Normal View History

2024-04-30 22:24:19 +00:00
ARG TAG_SUFFIX="-modern"
FROM sigp/lighthouse:v4.3.0${TAG_SUFFIX}
2024-04-25 12:23:30 +00:00
2024-04-30 22:24:19 +00:00
RUN apt-get update; apt-get install bash netcat curl less jq wget -y;
2024-04-25 12:23:30 +00:00
2024-04-30 22:24:19 +00:00
WORKDIR /root/
2024-04-25 12:23:30 +00:00
ADD start-lighthouse.sh .
ENTRYPOINT [ "./start-lighthouse.sh" ]