Skip to content

Commit b91b461

Browse files
committed
Build docker container for ARM and AMD
1 parent 987cb34 commit b91b461

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

.github/workflows/container_build.yml

+10-7
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,15 @@ env:
1111

1212
jobs:
1313
build-and-push-image:
14+
name: Build and Push Docker Image
1415
runs-on: ubuntu-20.04
1516
permissions:
1617
contents: read
1718
packages: write
18-
name: Build and Push Docker Image
19+
20+
strategy:
21+
matrix:
22+
platform: [ linux/amd64, linux/arm64 ]
1923

2024
steps:
2125
# Checkout the repository
@@ -38,15 +42,14 @@ jobs:
3842
type=semver,pattern={{version}}
3943
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/') && endsWith(github.ref, 'master') }}
4044
41-
- name: Set up QEMU
42-
uses: docker/setup-qemu-action@v3
43-
with:
44-
platforms: linux/amd64
45-
4645
- name: Set up Docker Buildx
4746
id: buildx
4847
uses: docker/setup-buildx-action@v3
4948

49+
- name: Set up QEMU
50+
uses: docker/setup-qemu-action@v3
51+
with:
52+
platforms: ${{ matrix.platform }}
5053

5154
- name: Set up Jupyter Notebook Cleaner
5255
uses: actions/setup-python@v4
@@ -75,5 +78,5 @@ jobs:
7578
tags: ${{ steps.metadata.outputs.tags }}
7679
labels: ${{ steps.metadata.outputs.labels }}
7780
builder: ${{ steps.buildx.outputs.name }}
78-
platforms: linux/amd64
81+
platforms: ${{ matrix.platform }}
7982

0 commit comments

Comments
 (0)