Skip to content

Commit

Permalink
fix: docker build command
Browse files Browse the repository at this point in the history
  • Loading branch information
NishaSharma14 committed Mar 21, 2023
1 parent 5b3f50f commit 3da9cfb
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/dev-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,7 @@ jobs:
# Build the Docker image
- name: Build App Image
run: |-
docker build \
--build-arg RELEASE_VERSION=${{ steps.fetch-latest-release.outputs.tag_name }} -f Dockerfile
--tag "europe-west3-docker.pkg.dev/$PROJECT_ID/$REPOSITORY_NAME/$APP_IMAGE:latest" \
--build-arg GITHUB_SHA="$GITHUB_SHA" \
--build-arg GITHUB_REF="$GITHUB_REF" \
.
docker build --build-arg RELEASE_VERSION=${{ steps.fetch-latest-release.outputs.tag_name }} --tag "europe-west3-docker.pkg.dev/$PROJECT_ID/$REPOSITORY_NAME/$APP_IMAGE:latest" .
# Push the Docker image to Google Container Registry
- name: Publish App Image to GCR
run: |-
Expand Down

0 comments on commit 3da9cfb

Please sign in to comment.