Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
# setup node
- uses: actions/setup-node@v5
with:
node-version: '22'
node-version: '24'
registry-url: 'https://registry.npmjs.org'

# setup qemu
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# --- dependencies image
FROM --platform=${BUILDPLATFORM} node:22-alpine AS dependencies
FROM --platform=${BUILDPLATFORM} node:24-alpine AS dependencies
LABEL maintainer="info@pascaliske.dev"
WORKDIR /build

Expand All @@ -11,7 +11,7 @@ COPY yarn.lock /build
RUN yarn install --frozen-lockfile --ignore-scripts

# builder image
FROM --platform=${BUILDPLATFORM} node:22-alpine AS builder
FROM --platform=${BUILDPLATFORM} node:24-alpine AS builder
LABEL maintainer="info@pascaliske.dev"
WORKDIR /build

Expand Down
Loading