diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 40755e4..5282efb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -31,6 +31,9 @@ jobs: - name: Check out code uses: actions/checkout@v3 + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - name: Extract metadata (tags, labels) for Docker id: meta uses: docker/metadata-action@v4 @@ -44,6 +47,7 @@ jobs: push: false # Do not push on PRs tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} + platforms: linux/amd64,linux/arm64 test: name: Run Tests diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c4b49e2..9f80aac 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,6 +36,9 @@ jobs: - name: Check out code uses: actions/checkout@v3 + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - name: Log in to GitHub Container Registry uses: docker/login-action@v2 with: @@ -56,6 +59,7 @@ jobs: push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} + platforms: linux/amd64,linux/arm64 package-and-publish-chart: name: Package and Publish Helm Chart diff --git a/exporter/Dockerfile b/exporter/Dockerfile index 76a2138..ee67c32 100644 --- a/exporter/Dockerfile +++ b/exporter/Dockerfile @@ -17,9 +17,12 @@ FROM python:3.9-slim WORKDIR /app +# Declare TARGETARCH arg to be used in COPY instruction +ARG TARGETARCH + # Copy iperf3 binary and library from the builder stage COPY --from=builder /usr/bin/iperf3 /usr/bin/iperf3 -COPY --from=builder /usr/lib/x86_64-linux-gnu/libiperf.so.0 /usr/lib/x86_64-linux-gnu/libiperf.so.0 +COPY --from=builder /usr/lib/${TARGETARCH}-linux-gnu/libiperf.so.0 /usr/lib/${TARGETARCH}-linux-gnu/libiperf.so.0 # Copy installed Python packages from the builder stage COPY --from=builder /usr/local/lib/python3.9/site-packages /usr/local/lib/python3.9/site-packages