From ab4cb498a2b778a824a3837a587158f17cd32089 Mon Sep 17 00:00:00 2001 From: Bruno Bernardino Date: Fri, 26 Sep 2025 20:35:39 +0100 Subject: [PATCH] Disable Arm64 CI build, Deno appears to have a bug there --- .github/workflows/build-docker-image.yml | 3 ++- Dockerfile | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index f1ead8a..838e5ef 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -46,7 +46,8 @@ jobs: - name: Build and push Docker image uses: docker/build-push-action@v6 with: - platforms: linux/amd64,linux/arm64 + # platforms: linux/amd64,linux/arm64 (currenly disabled because of some Deno bug on arm64) + platforms: linux/amd64 context: . file: ./Dockerfile push: true diff --git a/Dockerfile b/Dockerfile index e047175..fc239f2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,8 +9,6 @@ WORKDIR /app # These steps will be re-run upon each file change in your working directory: ADD . /app -RUN rm -fr node_modules _fresh - # Build fresh RUN deno task build