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
uses: useblacksmith/build-push-action@v1
with:
context: ./api
file: ./api/Dockerfile
context: ./apps/api
file: ./apps/api/Dockerfile
push: false # Do not push, load locally for service container
load: true # Load the image into the runner's Docker daemon
tags: local-api-test:latest # Tag for the service definition

View File

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

View File

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