Skip to content

Commit da5a8ce

Browse files
update file path in docker file
1 parent 276913b commit da5a8ce

File tree

2 files changed

+6
-83
lines changed

2 files changed

+6
-83
lines changed

.github/workflows/docker-build-push.yml

Lines changed: 0 additions & 77 deletions
This file was deleted.

.github/workflows/docker-build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ jobs:
6161
- name: Build and Push Docker Image for WebApp
6262
uses: docker/build-push-action@v6
6363
with:
64-
context: ./App
65-
file: ./App/WebApp.Dockerfile
64+
context: ./src/App
65+
file: ./src/App/WebApp.Dockerfile
6666
push: ${{ github.ref_name == 'main' || github.ref_name == 'dev' || github.ref_name == 'demo' }}
6767
tags: |
6868
${{ secrets.ACR_LOGIN_SERVER }}/km-app:${{ steps.determine_tag.outputs.tagname }}
@@ -71,8 +71,8 @@ jobs:
7171
- name: Build and Push Docker Image for km-rag-function
7272
uses: docker/build-push-action@v6
7373
with:
74-
context: ./AzureFunctions/km-rag-function
75-
file: ./AzureFunctions/km-rag-function/Dockerfile
74+
context: ./src/api/km-rag-function
75+
file: ./src/api/km-rag-function/Dockerfile
7676
push: ${{ github.ref_name == 'main' || github.ref_name == 'dev' || github.ref_name == 'demo' }}
7777
tags: |
7878
${{ secrets.ACR_LOGIN_SERVER }}/km-rag-function:${{ steps.determine_tag.outputs.tagname }}
@@ -81,8 +81,8 @@ jobs:
8181
- name: Build and Push Docker Image for km-charts-function
8282
uses: docker/build-push-action@v6
8383
with:
84-
context: ./AzureFunctions/km-charts-function
85-
file: ./AzureFunctions/km-charts-function/Dockerfile
84+
context: ./src/api/km-charts-function
85+
file: ./src/api/km-charts-function/Dockerfile
8686
push: ${{ github.ref_name == 'main' || github.ref_name == 'dev' || github.ref_name == 'demo' }}
8787
tags: |
8888
${{ secrets.ACR_LOGIN_SERVER }}/km-charts-function:${{ steps.determine_tag.outputs.tagname }}

0 commit comments

Comments
 (0)