diff --git a/Dockerfile b/Dockerfile index 1c7d285c58d..262d887de90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # # Build # -FROM node:20.18-slim AS builder +FROM node:23.11-slim AS builder WORKDIR /srv/node COPY package.json yarn.lock /srv/node/ @@ -12,7 +12,7 @@ RUN yarn install --pure-lockfile # # Install # -FROM node:20.18-slim +FROM node:23.11-slim ARG app_uid=9500 ARG app_dir=/app