From 1b439f3812cbd4a94214fed92107876e20d69f1f Mon Sep 17 00:00:00 2001 From: Marcel Zapf Date: Sat, 24 Aug 2024 04:12:57 +0200 Subject: [PATCH] update --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6ff21e2..559b3bd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -77,12 +77,12 @@ ENV PATH="/usr/local/bin:$PATH" ENV VIRTUAL_ENV="/usr/local/venv" # Copy entrypoint script -COPY ./entrypoint.sh /home/dev/entrypoint.sh -RUN chmod 755 /home/dev/entrypoint.sh +COPY ./entrypoint.sh /usr/local/bin/entrypoint.sh +RUN chmod 755 /usr/local/bin/entrypoint.sh # Expose SSH port EXPOSE 2222 # Start the SSH server and any other services via entrypoint.sh -ENTRYPOINT ["/home/dev/entrypoint.sh"] +ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] CMD []