From 931a225f0923f4b88aa63c456fde0d7924ad2fbd Mon Sep 17 00:00:00 2001 From: Steve Degosserie <723552+stiiifff@users.noreply.github.com> Date: Wed, 15 Oct 2025 22:54:44 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=94=A7=20Fix=20binary=20location?= =?UTF-8?q?=20in=20Docker=20img=20(#239)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- operator/Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/operator/Dockerfile b/operator/Dockerfile index 2520dbd4..c08a2d01 100644 --- a/operator/Dockerfile +++ b/operator/Dockerfile @@ -61,10 +61,9 @@ RUN useradd -m -u 1000 -U -s /bin/sh -d /datahaven datahaven && \ USER datahaven # Copy pre-built binary -COPY --chown=datahaven:datahaven build/* /datahaven - +COPY --chown=datahaven:datahaven build/* /usr/local/bin # Make binary executable -RUN chmod uog+x /datahaven/datahaven* +RUN chmod uog+x /usr/local/bin/datahaven* # Expose ports # 30333: p2p networking @@ -74,4 +73,4 @@ EXPOSE 30333 9944 9615 VOLUME ["/data"] -ENTRYPOINT ["/datahaven/datahaven-node"] +ENTRYPOINT ["/usr/local/bin/datahaven-node"]