Skip to content

Commit

Permalink
Change ENTRYPOINT by CMD on Dockerfiles.
Browse files Browse the repository at this point in the history
In order to fix execution of tests in pipeline
  • Loading branch information
Sebastián Fehlandt authored and Sebastián Fehlandt committed Aug 13, 2019
1 parent b4d14d8 commit 52127f2
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 @@ -29,4 +29,4 @@ ENV USER_USER_PASS=test
ENV CMD_USER_PASS=test

# Run daphne server in runtime
ENTRYPOINT ["./runserver.sh"]
CMD ["./runserver.sh"]
2 changes: 1 addition & 1 deletion Dockerfile-dev
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ ENV USER_USER_PASS=test
ENV CMD_USER_PASS=test

# Run development server in runtime
ENTRYPOINT ["./runserver-dev.sh"]
CMD ["./runserver-dev.sh"]

0 comments on commit 52127f2

Please sign in to comment.