Thomas E Lackey
99ea065389
All checks were successful
Ethereum Fixturenet Stack Test / Run Ethereum Fixturenet stack test (push) Successful in 24m49s
Co-authored-by: David Boreham <david@bozemanpass.com> Reviewed-on: #7
11 lines
263 B
Docker
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" ]
|