From ff78ddc5a0dbc299a47a21b4f2456f1f6c82f45e Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Thu, 12 Feb 2026 19:09:43 +0000 Subject: [PATCH] deleted all images in ecr --- .github/workflows/_build_image.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/_build_image.yml b/.github/workflows/_build_image.yml index f4b94fc0..5e5b5155 100644 --- a/.github/workflows/_build_image.yml +++ b/.github/workflows/_build_image.yml @@ -91,15 +91,16 @@ jobs: BUILD_ARGS="$BUILD_ARGS --build-arg $temp" done <<< "${{ inputs.build_args }}" - docker build \ + docker buildx build \ --no-cache \ --platform linux/amd64 \ + --provenance=false \ + --sbom=false \ + --push \ -f ${{ inputs.dockerfile_path }} \ $BUILD_ARGS \ -t $IMAGE_URI \ ${{ inputs.build_context }} - - docker push $IMAGE_URI - name: Resolve image digest id: digest