Skip to content

Commit

Permalink
fixes dockerfile path for backend services
Browse files Browse the repository at this point in the history
  • Loading branch information
tommasodotNET committed Dec 2, 2023
1 parent 0ce2cbf commit b97810b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/document-processing-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Build image
run: |
cd ./app
docker build -t ${{ secrets.AZURE_CONTAINER_REGISTRY }}/${{ env.SERVICE_NAME }}:latest -f ./${{ env.SERVICE_PATH }}/*/Dockerfile .
docker build -t ${{ secrets.AZURE_CONTAINER_REGISTRY }}/${{ env.SERVICE_NAME }}:latest -f ./${{ env.SERVICE_PATH }}/KnowledgeBase.DocumentProcessing/Dockerfile .
- name: Push image to Azure Container Registry
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/knowledge-processing-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Build image
run: |
cd ./app
docker build -t ${{ secrets.AZURE_CONTAINER_REGISTRY }}/${{ env.SERVICE_NAME }}:latest -f ./${{ env.SERVICE_PATH }}/*/Dockerfile .
docker build -t ${{ secrets.AZURE_CONTAINER_REGISTRY }}/${{ env.SERVICE_NAME }}:latest -f ./${{ env.SERVICE_PATH }}/KnowledgeBase.KnowledgeProcessing/Dockerfile .
- name: Push image to Azure Container Registry
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/search-knowledge-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Build image
run: |
cd ./app
docker build -t ${{ secrets.AZURE_CONTAINER_REGISTRY }}/${{ env.SERVICE_NAME }}:latest -f ./${{ env.SERVICE_PATH }}/*/Dockerfile .
docker build -t ${{ secrets.AZURE_CONTAINER_REGISTRY }}/${{ env.SERVICE_NAME }}:latest -f ./${{ env.SERVICE_PATH }}/KnowledgeBase.SearchKnowledge/Dockerfile .
- name: Push image to Azure Container Registry
run: |
Expand Down

0 comments on commit b97810b

Please sign in to comment.