diff --git a/lodestar/Dockerfile.binary b/lodestar/Dockerfile.binary index 8a09bd6a..0f6c4313 100644 --- a/lodestar/Dockerfile.binary +++ b/lodestar/Dockerfile.binary @@ -8,7 +8,7 @@ FROM ${DOCKER_REPO}:${DOCKER_TAG} ARG BUILD_TARGET ARG SRC_REPO -RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates tzdata bash gosu git git-lfs wget \ +RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates tzdata bash gosu git git-lfs \ && apt-get clean && rm -rf /var/lib/apt/lists/* ARG USER=lsconsensus diff --git a/lodestar/Dockerfile.source b/lodestar/Dockerfile.source index a759b952..f7999975 100644 --- a/lodestar/Dockerfile.source +++ b/lodestar/Dockerfile.source @@ -36,7 +36,7 @@ EOF FROM node:24-slim -RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates tzdata bash gosu git git-lfs wget \ +RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates tzdata bash gosu git git-lfs \ && gosu nobody true && apt-get clean && rm -rf /var/lib/apt/lists/* ARG USER=lsconsensus diff --git a/lodestar/docker-entrypoint.sh b/lodestar/docker-entrypoint.sh index 4e3df6fd..12a02e70 100755 --- a/lodestar/docker-entrypoint.sh +++ b/lodestar/docker-entrypoint.sh @@ -112,14 +112,6 @@ fi if [[ "${IPV6}" = "true" ]]; then echo "Configuring Lodestar to listen on IPv6 ports" __ipv6="--listenAddress 0.0.0.0 --listenAddress6 :: --port6 ${CL_P2P_PORT:-9000}" -# ENR discovery on v6 is not yet working, likely too few peers. Manual for now - ipv6_pattern="^[0-9A-Fa-f]{1,4}:" # Sufficient to check the start - set +e - public_v6=$(wget -6 -q -O- ifconfig.me) - set -e - if [[ "${public_v6}" =~ ${ipv6_pattern} ]]; then - __ipv6+=" --enr.ip6 ${public_v6}" - fi else __ipv6="--listenAddress 0.0.0.0" fi