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
5 changes: 2 additions & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@ on:
jobs:
build:
# Update it to `ubuntu-latest` only when:
# - our infra is on Debian >= 13 which has ImageMagick 7
# - our infra is on Debian >=13 which has ImageMagick 7
# - `ubuntu-latest` resolves to v26.x which has ImageMagick 7
# When doing that, also update `imagemagick6` to `imagemagick
# in Dockerfile and the `convert` command to `magick`.
# When doing that, also update the `convert` command to `magick`.
runs-on: ubuntu-24.04
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:22-alpine
WORKDIR /app
COPY package*.json ./

RUN apk add libxml2 libxslt git imagemagick6 python3 make g++
RUN apk add libxml2 libxslt git imagemagick python3 make g++
RUN npm install

COPY . .
Expand Down