From 505c1758e41715582936c0b930de24e1ca1a6473 Mon Sep 17 00:00:00 2001 From: Marketen Date: Wed, 13 Aug 2025 19:53:29 +0200 Subject: [PATCH] simplify lodestar bin --- cluster/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/Dockerfile b/cluster/Dockerfile index cb8bce2..f3d6848 100644 --- a/cluster/Dockerfile +++ b/cluster/Dockerfile @@ -18,7 +18,7 @@ RUN apt-get update && \ RUN mkdir -p /opt/validator/bin /usr/local/bin/scripts/charon /usr/local/bin/scripts/lodestar && \ curl -L https://github.com/ChainSafe/lodestar/releases/download/${VALIDATOR_CLIENT_VERSION}/lodestar-${VALIDATOR_CLIENT_VERSION}-linux-${TARGETARCH}.tar.gz | tar -xz -C /opt/validator/bin && \ - mv /opt/validator/bin/lodestar /opt/validator/bin/lodestar-${TARGETARCH} && chmod +x /opt/validator/bin/lodestar-${TARGETARCH} + chmod +x /opt/validator/bin/lodestar COPY scripts /usr/local/bin/scripts COPY supervisord.conf /etc/supervisord.conf