Skip to content

Commit

Permalink
ci(docker-build): set bash as the default entrypoint shell
Browse files Browse the repository at this point in the history
  • Loading branch information
vpayno committed Nov 29, 2023
1 parent d0f50d5 commit 89216cc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,11 @@ COPY .github/docker/entrypoint.sh /entrypoint.sh

RUN rm -rvf /.github

SHELL ["bash", "-c"]

# app + args
# Executes `entrypoint.sh` when the Docker container starts up
ENTRYPOINT ["/entrypoint.sh"]
ENTRYPOINT ["bash", "-c", "/entrypoint.sh"]

# Extra args
CMD []

0 comments on commit 89216cc

Please sign in to comment.