1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-08-03 04:25:27 +02:00

build: Use Node.js v22

This commit is contained in:
Maksim Eltyshev 2025-06-16 21:32:54 +02:00
parent 2d1a8658bb
commit 8df49a636a
6 changed files with 18 additions and 10 deletions

View file

@ -1,4 +1,4 @@
FROM node:18-alpine AS server-dependencies
FROM node:22-alpine AS server-dependencies
RUN apk -U upgrade \
&& apk add build-base python3 --no-cache
@ -10,7 +10,7 @@ COPY server/package.json server/package-lock.json server/requirements.txt ./
RUN npm install npm --global \
&& npm install --omit=dev
FROM node:lts AS client
FROM node:22 AS client
WORKDIR /app
@ -21,7 +21,7 @@ RUN npm install npm --global \
RUN DISABLE_ESLINT_PLUGIN=true npm run build
FROM node:18-alpine
FROM node:22-alpine
RUN apk -U upgrade \
&& apk add bash python3 --no-cache \