Roy Crihfield
ff616db4ad
* random nits * geth - visibility of migration status * forward CERC_RUN_STATEDIFF to geth container * fix ipld-eth-server vars * fix fixturenet-eth-loaded stack * fixturenet geth genesis - include mergeNetsplitBlock * forward CERC_STATEDIFF_DB_GOOSE_MIN_VER to env file * add TAG_SUFFIX arg to lighthouse build intended to avoid sporadic failures when running lcli on github CI runners, likely related to non-portable builds
10 lines
214 B
Docker
10 lines
214 B
Docker
ARG TAG_SUFFIX="-modern"
|
|
FROM sigp/lighthouse:v4.1.0${TAG_SUFFIX}
|
|
|
|
RUN apt-get update; apt-get install bash netcat curl less jq -y;
|
|
|
|
WORKDIR /root/
|
|
ADD start-lighthouse.sh .
|
|
|
|
ENTRYPOINT [ "./start-lighthouse.sh" ]
|