From 8e937d3a26a9fcd2f161bc963f71d7502b801fc7 Mon Sep 17 00:00:00 2001 From: dbarkowsky Date: Wed, 18 Sep 2024 09:32:10 -0700 Subject: [PATCH] bump node image versions --- express-api/Dockerfile | 2 +- react-app/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/express-api/Dockerfile b/express-api/Dockerfile index aaad8c405..01ead8ecf 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 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