Skip to content

Commit

Permalink
fix dockerfile arg
Browse files Browse the repository at this point in the history
  • Loading branch information
dmolik committed Nov 27, 2024
1 parent 0a58f04 commit 4174555
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,15 @@ 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 }}
- name: Build and push Sidecar image
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 }}
Expand All @@ -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 }}
Expand Down

0 comments on commit 4174555

Please sign in to comment.