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
roy/ipld-eth-ci
Roy Crihfield 2023-05-29 20:51:47 +08:00
parent 846c5477c9
commit 914ac36781
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
FROM sigp/lighthouse:v4.1.0-modern
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;