Skip to content

Commit

Permalink
fix: running the entrypoint.sh with sh
Browse files Browse the repository at this point in the history
Avoiding permission errors with the entrypoint.sh
Moreover, read this: composer/docker#7
  • Loading branch information
gabfr committed Sep 24, 2019
1 parent a756a94 commit 123a1d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,5 @@ EXPOSE 8080 5555 8793

USER airflow
WORKDIR ${AIRFLOW_USER_HOME}
ENTRYPOINT ["/entrypoint.sh"]
ENTRYPOINT ["sh", "/entrypoint.sh"]
CMD ["webserver"] # set default arg for entrypoint

0 comments on commit 123a1d6

Please sign in to comment.