From 36047f8b70c4dd985651319b3e81a499ed7c1df5 Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Sat, 8 Mar 2025 10:43:33 +0100 Subject: [PATCH] fix --- nimbus/Dockerfile | 2 +- nimbus/entrypoint.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nimbus/Dockerfile b/nimbus/Dockerfile index 858c9758..8a6f4d56 100644 --- a/nimbus/Dockerfile +++ b/nimbus/Dockerfile @@ -6,6 +6,6 @@ USER root RUN apt update && apt install curl jq -y COPY entrypoint.sh /usr/bin/entrypoint.sh -COPY auth-token /home/user/nimbus-eth2/build/data/auth-token +COPY auth-token /auth-token ENTRYPOINT [ "/usr/bin/entrypoint.sh" ] \ No newline at end of file diff --git a/nimbus/entrypoint.sh b/nimbus/entrypoint.sh index 14b2dac2..de02133d 100755 --- a/nimbus/entrypoint.sh +++ b/nimbus/entrypoint.sh @@ -5,7 +5,7 @@ VALIDATOR_PORT=3500 DATA_DIR="/home/user/nimbus-eth2/build/data" VALIDATORS_DIR="${DATA_DIR}/validators" -TOKEN_FILE="${DATA_DIR}/auth-token" +TOKEN_FILE="/auth-token" mkdir -p ${VALIDATORS_DIR}