diff --git a/beacon-chain/Dockerfile b/beacon-chain/Dockerfile index c03dc9d..96eeb1b 100644 --- a/beacon-chain/Dockerfile +++ b/beacon-chain/Dockerfile @@ -18,7 +18,7 @@ ENV JWT_SECRET_FILE=/jwtsecret \ ADD ${STAKER_SCRIPTS_URL}/consensus_tools.sh /etc/profile.d/ -RUN chmod +x /usr/local/bin/entrypoint.sh /etc/profile.d/consensus_tools.sh +RUN chmod +rx /usr/local/bin/entrypoint.sh /etc/profile.d/consensus_tools.sh EXPOSE $BEACON_API_PORT diff --git a/validator/Dockerfile b/validator/Dockerfile index 1ff389e..113d956 100644 --- a/validator/Dockerfile +++ b/validator/Dockerfile @@ -15,6 +15,6 @@ ENV DATA_DIR=/var/lib/data \ ADD ${STAKER_SCRIPTS_URL}/consensus_tools.sh /etc/profile.d/ -RUN chmod +x /usr/local/bin/entrypoint.sh /etc/profile.d/consensus_tools.sh +RUN chmod +rx /usr/local/bin/entrypoint.sh /etc/profile.d/consensus_tools.sh ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ] \ No newline at end of file