Skip to content

Commit cc877a1

Browse files
committed
Update Docker build contexts in deploy workflows
Changed the Docker build context and Dockerfile paths in develop and release GitHub Actions workflows. The develop workflow now uses './server', and the release workflow uses './web' instead of './backend'.
1 parent 51b431c commit cc877a1

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/develop-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
- name: Build and push Docker image
2626
uses: docker/build-push-action@v5
2727
with:
28-
context: ./backend
29-
file: ./backend/Dockerfile
28+
context: ./server
29+
file: ./server/Dockerfile
3030
push: true
3131
tags: |
3232
${{ secrets.DOCKERHUB_USERNAME }}/rote-backend:latest-dev

.github/workflows/release-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
- name: Build and push Docker image
2828
uses: docker/build-push-action@v5
2929
with:
30-
context: ./backend
31-
file: ./backend/Dockerfile
30+
context: ./web
31+
file: ./web/Dockerfile
3232
push: true
3333
tags: |
3434
${{ secrets.DOCKERHUB_USERNAME }}/rote-backend:latest

0 commit comments

Comments
 (0)