Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down
1 change: 1 addition & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading