diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index abd1cdf..acf0942 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -23,9 +23,6 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - name: Log in to the Container registry if: github.event_name != 'pull_request' uses: docker/login-action@v2 @@ -51,9 +48,9 @@ jobs: uses: docker/build-push-action@v4 with: context: . - file: ./docker/Dockerfile.ghcr + file: ./docker/Dockerfile push: true - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} build-args: | diff --git a/docker/Dockerfile b/docker/Dockerfile index f46c107..03e567a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,6 +2,7 @@ FROM node:22-alpine AS build ARG APP_VERSION=dev ENV APP_VERSION=$APP_VERSION +ENV PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 # Install OS dependencies RUN apk add --no-cache python3 make g++ iputils