Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Syntax3rror404 committed Aug 24, 2024
1 parent 6964e93 commit 1b439f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 []

0 comments on commit 1b439f3

Please sign in to comment.