diff --git a/.github/workflows/docker-hub.yml b/.github/workflows/docker-hub.yml index 18cb47b1..f6dcc8f5 100644 --- a/.github/workflows/docker-hub.yml +++ b/.github/workflows/docker-hub.yml @@ -24,6 +24,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 + - + 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 @@ -49,6 +55,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 }} @@ -60,6 +67,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 + - + 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 @@ -86,6 +99,7 @@ jobs: context: . file: ./src/frontend/Dockerfile target: frontend-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 }} @@ -97,6 +111,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 + - + 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 @@ -123,6 +143,7 @@ jobs: context: . file: ./docker/dinum-frontend/Dockerfile target: frontend-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 }} @@ -134,6 +155,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 + - + 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 @@ -162,6 +189,7 @@ jobs: context: ./src/summary file: ./src/summary/Dockerfile target: 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 }} @@ -173,6 +201,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 + - + 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 @@ -201,6 +235,7 @@ jobs: context: ./src/agents file: ./src/agents/Dockerfile target: 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 37de0224..677c0e71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to ## [Unreleased] +### Added + +- 👷(docker) add arm64 platform support for image builds + ### Changed - ♻️(frontend) replace custom reactions toolbar with react aria popover #985