Thomas E Lackey
84f9fed18b
All checks were successful
Ethereum Fixturenet Stack Test / Run Ethereum Fixturenet stack test (push) Successful in 22m9s
Reviewed-on: #4 Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com> Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
10 lines
219 B
Docker
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" ]
|