Fix Docker context paths in GitHub workflows - change ./api to ./apps/api

Co-Authored-By: Dallin Bentley <dallinbentley98@gmail.com>
This commit is contained in:
Devin AI 2025-07-17 15:42:19 +00:00
parent 152825758b
commit 9e461f9948
3 changed files with 8 additions and 8 deletions

View File

@ -31,8 +31,8 @@ jobs:
- name: Build and Load API Docker Image - name: Build and Load API Docker Image
uses: useblacksmith/build-push-action@v1 uses: useblacksmith/build-push-action@v1
with: with:
context: ./api context: ./apps/api
file: ./api/Dockerfile file: ./apps/api/Dockerfile
push: false # Do not push, load locally for service container push: false # Do not push, load locally for service container
load: true # Load the image into the runner's Docker daemon load: true # Load the image into the runner's Docker daemon
tags: local-api-test:latest # Tag for the service definition tags: local-api-test:latest # Tag for the service definition

View File

@ -103,8 +103,8 @@ jobs:
- name: Build and push API image - name: Build and push API image
uses: useblacksmith/build-push-action@v1 uses: useblacksmith/build-push-action@v1
with: with:
context: ./api context: ./apps/api
file: ./api/Dockerfile file: ./apps/api/Dockerfile
push: true push: true
platforms: ${{ matrix.docker_platform }} platforms: ${{ matrix.docker_platform }}
tags: | tags: |

View File

@ -69,8 +69,8 @@ jobs:
- name: Build & Load API Docker Image - name: Build & Load API Docker Image
uses: useblacksmith/build-push-action@v1 uses: useblacksmith/build-push-action@v1
with: with:
context: ./api context: ./apps/api
file: ./api/Dockerfile file: ./apps/api/Dockerfile
push: false push: false
load: true load: true
tags: local-api-test:latest tags: local-api-test:latest