Skip to content

Commit

Permalink
chore: Update deploy workflow and Dockerfile for backend
Browse files Browse the repository at this point in the history
Update the deploy workflow and Dockerfile for the backend. Add the missing `docker compose` command in the `build-backend` step of the deploy workflow and include the `npm start` command in the Dockerfile to start the backend server. These changes ensure correct building and deployment of the backend.
  • Loading branch information
kvineet002 committed Aug 24, 2024
1 parent a99d8b3 commit 7121d03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ jobs:
git fetch origin
git checkout deploy
git pull
docker compose -f docker-compose.yml up | tee docker-compose.log
docker compose -f docker-compose.yml up -d --build | tee docker-compose.log

0 comments on commit 7121d03

Please sign in to comment.