diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index ec8aba39e..a1af5f445 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -29,6 +29,9 @@ jobs: echo "VERSION=$VERSION" >> $GITHUB_ENV echo "version=$VERSION" >> $GITHUB_OUTPUT + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v4 @@ -51,6 +54,7 @@ jobs: with: context: . push: true + platforms: linux/amd64,linux/arm64 tags: | ${{ env.DOCKER_REPO }}:latest ${{ env.DOCKER_REPO }}:${{ env.VERSION }} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index a97f90203..ebe91d7e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Download Playwright and its dependencies -FROM mcr.microsoft.com/playwright:v1.55.0-noble +FROM mcr.microsoft.com/playwright:v1.61.0-noble # Set non-interactive mode for apt operations ENV DEBIAN_FRONTEND=noninteractive