Skip to content

Commit

Permalink
fix(ci): docker arg is named TARGETARCH.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <nierro92@gmail.com>
  • Loading branch information
FedeDP committed May 19, 2023
1 parent a28347d commit e099d57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/reusable_build_docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
docker build -t docker.io/falcosecurity/falco-no-driver:${{ inputs.arch }}-${{ inputs.tag }} \
--build-arg VERSION_BUCKET=bin${{ inputs.bucket_suffix }} \
--build-arg FALCO_VERSION=${{ inputs.version }} \
--build-arg TARGET_ARCH=${TARGET_ARCH} \
--build-arg TARGETARCH=${TARGET_ARCH} \
--output type=docker,dest=/tmp/falco-no-driver-${{ inputs.arch }}.tar \
.
Expand All @@ -53,7 +53,7 @@ jobs:
docker build -t docker.io/falcosecurity/falco:${{ inputs.arch }}-${{ inputs.tag }} \
--build-arg VERSION_BUCKET=deb${{ inputs.bucket_suffix }} \
--build-arg FALCO_VERSION=${{ inputs.version }} \
--build-arg TARGET_ARCH=${TARGET_ARCH} \
--build-arg TARGETARCH=${TARGET_ARCH} \
--output type=docker,dest=/tmp/falco-${{ inputs.arch }}.tar \
.
Expand All @@ -67,7 +67,7 @@ jobs:
cd ${{ github.workspace }}/docker/driver-loader/
docker build -t docker.io/falcosecurity/falco-driver-loader:${{ inputs.arch }}-${{ inputs.tag }} \
--build-arg FALCO_IMAGE_TAG=${{ inputs.arch }}-${{ inputs.tag }} \
--build-arg TARGET_ARCH=${TARGET_ARCH} \
--build-arg TARGETARCH=${TARGET_ARCH} \
--output type=docker,dest=/tmp/falco-driver-loader-${{ inputs.arch }}.tar \
.
Expand Down
2 changes: 1 addition & 1 deletion submodules/falcosecurity-rules

0 comments on commit e099d57

Please sign in to comment.