diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index a6daedb..2b683e8 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -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 diff --git a/Dockerfile b/Dockerfile index 59700a4..00e5f34 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 @@ -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