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