Skip to content

Commit

Permalink
adding bash to the action for the entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
jpetrucciani committed Mar 9, 2020
1 parent 8dccd9a commit 179fdad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ADD requirements.txt /requirements.txt
ADD entrypoint.sh /entrypoint.sh
ADD github.py /github.py

RUN apk add gcc musl-dev && \
RUN apk add bash gcc musl-dev && \
pip install -r requirements.txt

ENTRYPOINT ["/entrypoint.sh"]
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
set -ax

# mypy output file
Expand Down

0 comments on commit 179fdad

Please sign in to comment.