From 2337aaeca0742b75cc03d68140a77b09fa40c224 Mon Sep 17 00:00:00 2001 From: Stephan Meijer Date: Thu, 19 Feb 2026 17:33:48 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7(docker)=20add=20arm64=20platform?= =?UTF-8?q?=20support=20for=20image=20builds?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stephan Meijer --- .github/workflows/docker-hub.yml | 7 +++++++ CHANGELOG.md | 1 + 2 files changed, 8 insertions(+) diff --git a/.github/workflows/docker-hub.yml b/.github/workflows/docker-hub.yml index db4402d4..6e06f29f 100644 --- a/.github/workflows/docker-hub.yml +++ b/.github/workflows/docker-hub.yml @@ -21,6 +21,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - + name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - name: Docker meta id: meta @@ -44,6 +50,7 @@ jobs: with: context: . target: backend-production + platforms: linux/amd64,linux/arm64 build-args: DOCKER_USER=${{ env.DOCKER_USER }}:-1000 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ac8e7e3..01e7df40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to ## Added +- 👷(docker) add arm64 platform support for image builds - ✨(backend) add semantic search - ✨(backend) add multi-embedding and chunking - ✨(backend) add analyzers to full-text search