diff --git a/client/Dockerfile b/client/Dockerfile index 21212bd..2fb0280 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM node:23.2.0-alpine3.19 as build +FROM node:23.3.0-alpine3.19 as build COPY . . # Install project dependencies (somehow Python has to be installed) RUN apk --no-cache add --virtual .builds-deps build-base python3 @@ -8,7 +8,7 @@ RUN npm ci RUN npm run build # Production stage. -FROM node:23.2.0-alpine3.19 +FROM node:23.3.0-alpine3.19 WORKDIR /app # Install dependencies of server.js RUN npm install express connect-history-api-fallback && npm cache clean --force