Skip to content

Commit

Permalink
permisson fix for entrypoint.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh committed May 11, 2024
1 parent 7812850 commit 378f964
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 @@ -11,6 +11,6 @@ COPY --chown=$MAMBA_USER:$MAMBA_USER requirements.txt /tmp/requirements.txt
RUN python3 -m pip install --no-cache-dir -r /tmp/requirements.txt

# copy over the entry point
COPY --chown=$MAMBA_USER:$MAMBA_USER entrypoint.sh /usr/local/bin/

CMD [ "entrypoint.sh" ]
COPY --chown=$MAMBA_USER:$MAMBA_USER entrypoint.sh /
RUN chmod +x /entrypoint.sh
CMD ["/entrypoint.sh"]

0 comments on commit 378f964

Please sign in to comment.