diff --git a/express-api/Dockerfile b/express-api/Dockerfile index aaad8c405..4eefa2a0e 100644 --- a/express-api/Dockerfile +++ b/express-api/Dockerfile @@ -2,7 +2,7 @@ # Base # ############################################# # Use an official Node.js runtime as a base image -FROM node:21.6-bullseye-slim as base +FROM node:22.9-bullseye-slim as base # Set the working directory in the container WORKDIR /express-api @@ -22,7 +22,7 @@ RUN npm run build ############################################# # Prod Build # ############################################# -FROM node:21.6-bullseye-slim as Prod +FROM node:22.9-bullseye-slim as Prod # Set the working directory to /express-api WORKDIR /express-api diff --git a/react-app/Dockerfile b/react-app/Dockerfile index a1cb2a251..9eff48f98 100644 --- a/react-app/Dockerfile +++ b/react-app/Dockerfile @@ -1,7 +1,7 @@ ############################################# # Base Build # ############################################# -FROM node:18.17.1-bullseye-slim as base +FROM node:22.9-bullseye-slim as base # Set the working directory to /app WORKDIR /app