Skip to content

Commit

Permalink
build: change sh -c to bash -c (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
francisvaut authored Apr 9, 2024
1 parent 629ae0b commit e24c736
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deployement.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
script: |
cd UGent-7
docker-compose -f production.yml down
git pull
git pull --force
docker-compose -f production.yml build --no-cache
docker-compose -f production.yml up -d
2 changes: 1 addition & 1 deletion production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ services:
build:
context: $BACKEND_DIR
dockerfile: Dockerfile
command: sh -c "./setup.sh && gunicorn --config gunicorn_config.py ypovoli.wsgi:application"
command: bash -c "./setup.sh && gunicorn --config gunicorn_config.py ypovoli.wsgi:application"
expose:
- 8080
depends_on:
Expand Down

0 comments on commit e24c736

Please sign in to comment.