Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions deploy/build-push-docker-ecr/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ inputs:

dockerfile_path:
description: "Path to the Dockerfile"
default: "."
default: "Dockerfile"

env_vars:
description: "Environment variables to pass during the Docker build process"
Expand Down Expand Up @@ -51,4 +51,4 @@ runs:
shell: bash
run: |
docker buildx create --use
docker buildx build --platform ${{ inputs.docker_platforms }} --push -t ${{ inputs.ecr_repository }}:${{ inputs.docker_image_tag }} ${{ inputs.dockerfile_path }}
docker buildx build --platform ${{ inputs.docker_platforms }} --push -t ${{ inputs.ecr_repository }}:${{ inputs.docker_image_tag }} . -f ${{ inputs.dockerfile_path }}