From cd64280ad70d3c241e6b10f1015979905ca38986 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Thu, 19 Sep 2024 16:05:00 +0100 Subject: [PATCH] Update Docker workflows to support multi-platform builds for arm64 --- .github/workflows/release.yml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3707d8f97a7..899107eafed 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1130,8 +1130,7 @@ jobs: with: file: ./LLM/Dockerfile context: ./LLM - # arm64 is not supported by the base image of the LLM - platforms: linux/amd64 + platforms: linux/amd64,linux/arm64 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} @@ -1202,8 +1201,7 @@ jobs: with: file: ./Docs/Dockerfile context: . - # arm64 is not supported by the base image of the LLM - platforms: linux/amd64 + platforms: linux/amd64,linux/arm64 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} @@ -1277,8 +1275,7 @@ jobs: with: file: ./Worker/Dockerfile context: . - # arm64 is not supported by the base image of the LLM - platforms: linux/amd64 + platforms: linux/amd64,linux/arm64 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} @@ -1352,8 +1349,7 @@ jobs: with: file: ./Workflow/Dockerfile context: . - # arm64 is not supported by the base image of the LLM - platforms: linux/amd64 + platforms: linux/amd64,linux/arm64 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} @@ -1428,8 +1424,7 @@ jobs: with: file: ./APIReference/Dockerfile context: . - # arm64 is not supported by the base image of the LLM - platforms: linux/amd64 + platforms: linux/amd64,linux/arm64 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}