diff --git a/.github/workflows/image.yaml b/.github/workflows/image.yaml index ef3e332..1a5b364 100644 --- a/.github/workflows/image.yaml +++ b/.github/workflows/image.yaml @@ -66,7 +66,7 @@ jobs: uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 id: docker_build_controller with: - dockerfile: Dockerfile.controller + file: Dockerfile.controller context: . push: true visibility: public @@ -76,7 +76,7 @@ jobs: uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 id: docker_build_sidecar with: - dockerfile: Dockerfile.sidecar + file: Dockerfile.sidecar context: . push: true visibility: public @@ -86,7 +86,7 @@ jobs: uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 id: docker_build_valkey with: - dockerfile: Dockerfile.valkey + file: Dockerfile.valkey context: . push: true visibility: public diff --git a/.github/workflows/scan.yaml b/.github/workflows/scan.yaml index e626320..908f1a2 100644 --- a/.github/workflows/scan.yaml +++ b/.github/workflows/scan.yaml @@ -104,7 +104,7 @@ jobs: - name: Build and push Controller image uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 with: - dockerfile: Dockerfile.controller + file: Dockerfile.controller context: . push: false tags: ${{ steps.meta_manager.outputs.tags }} @@ -112,7 +112,7 @@ jobs: uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 id: docker_build_sidecar with: - dockerfile: Dockerfile.sidecar + file: Dockerfile.sidecar context: . push: false tags: ${{ steps.meta_sidecar.outputs.tags }} @@ -121,7 +121,7 @@ jobs: uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 id: docker_build_valkey with: - dockerfile: Dockerfile.valkey + file: Dockerfile.valkey context: . push: false tags: ${{ steps.meta_valkey.outputs.tags }}