We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 605f45b commit 9b26833Copy full SHA for 9b26833
1 file changed
.github/workflows/release.yaml
@@ -118,9 +118,20 @@ jobs:
118
- name: Checkout repo
119
uses: actions/checkout@v4
120
121
- - name: Build Docker image
122
- run: docker build -t linux -f .github/workflows/Dockerfile.centos_aarch64 .
+ - name: Set up QEMU
+ uses: docker/setup-qemu-action@v3
123
+
124
+ - name: Set up Docker Buildx
125
+ uses: docker/setup-buildx-action@v3
126
127
+ - name: Build Docker image
128
+ run: |
129
+ docker buildx build \
130
+ --platform linux/arm64 \
131
+ -t linux \
132
+ -f .github/workflows/Dockerfile.centos_aarch64 \
133
+ --load .
134
135
- name: Create container
136
run: docker create --name linuxcontainer_aarch64 linux
137
0 commit comments