From b5bc0e0c61dc73c434209c572f9da1db3734a2a5 Mon Sep 17 00:00:00 2001 From: Oriol Egea Date: Sat, 24 Feb 2024 22:39:23 +0100 Subject: [PATCH] Update to node 18 --- backend/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 12c1c43..5ead6b2 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16 AS build +FROM node:18 AS build WORKDIR /usr/src/app RUN mkdir -p /usr/src/app/authentication-service&&mkdir -p /usr/src/app/documents-service @@ -26,7 +26,7 @@ RUN export TERM=linux && npm run build WORKDIR /usr/src/app/documents-service RUN export TERM=linux && npm run build -FROM node:16 AS production +FROM node:18 AS production # Copy the bundle from the build stage WORKDIR /usr/src/app