bump node version

This commit is contained in:
Evert Prants 2024-11-23 18:17:04 +02:00
parent 5e9f2fccee
commit 846ba5533f
Signed by: evert
GPG Key ID: 0960A17F9F40237D

View File

@ -1,5 +1,5 @@
# Build the application with a specific environment
FROM node:20-alpine AS builder
FROM node:22-alpine AS builder
WORKDIR /usr/src/app
@ -9,7 +9,7 @@ RUN npm ci
RUN npm run build
# Create the executor image
FROM node:20-alpine
FROM node:22-alpine
WORKDIR /app