From 28882dd4e05b8c01c94d105a284e4387b5da8f7e Mon Sep 17 00:00:00 2001 From: Dimitri Prosper Date: Mon, 31 Jan 2022 20:10:34 -0500 Subject: [PATCH] Update publish-container-image-icr.yml --- .github/workflows/publish-container-image-icr.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-container-image-icr.yml b/.github/workflows/publish-container-image-icr.yml index 4c2cbfa..390f026 100644 --- a/.github/workflows/publish-container-image-icr.yml +++ b/.github/workflows/publish-container-image-icr.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest env: ICR_NAMESPACE: solution-tutorials - ICR_REPOSITORY: tutorial-application-log-analysis + ICR_REPOSITORY: tutorial-cloud-e2e-security steps: - name: Check out the repo uses: actions/checkout@v2 @@ -31,7 +31,8 @@ jobs: - name: Build and push image uses: docker/build-push-action@v2.8.0 with: - context: . + context: ./app + file: ./app/Dockerfile push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}