Skip to content

fix: docker image build for amd64 and arm64 separately #1364

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 2, 2025
Merged
Show file tree
Hide file tree
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 .github/workflows/build-push-edge-kafka.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
context: .
file: ./Dockerfile.kafka
push: true
tags: parseable/parseable:edge-kafka
tags: parseable/parseable:edge-kafka-amd64
platforms: linux/amd64
build-args: |
LIB_DIR=x86_64-linux-gnu
Expand All @@ -54,7 +54,7 @@ jobs:
context: .
file: ./Dockerfile.kafka
push: true
tags: parseable/parseable:edge-kafka
tags: parseable/parseable:edge-kafka-arm64
platforms: linux/arm64
build-args: |
LIB_DIR=aarch64-linux-gnu
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,3 +229,25 @@ jobs:
push: true
tags: parseable/parseable:${{ github.ref_name }}
platforms: linux/amd64,linux/arm64

- name: Build and push kafka amd64
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile.kafka
push: true
tags: parseable/parseable:${{ github.ref_name }}-kafka-amd64
platforms: linux/amd64
build-args: |
LIB_DIR=x86_64-linux-gnu

- name: Build and push kafka arm64
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile.kafka
push: true
tags: parseable/parseable:${{ github.ref_name }}-kafka-arm64
platforms: linux/arm64
build-args: |
LIB_DIR=aarch64-linux-gnu
Loading