From ded96b557833052cb4f50646217932d384f32caa Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 24 Feb 2024 17:13:48 +0000 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=20Upgrade=20to=20Node=2020.11.1=20LTS?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 57186aea..0b779505 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16.13.2-alpine AS BUILD_IMAGE +FROM node:20.11.1-alpine AS BUILD_IMAGE # Set the platform to build image for ARG TARGETPLATFORM @@ -25,7 +25,7 @@ COPY . ./ RUN yarn build --mode production # Production stage -FROM node:16.13.2-alpine +FROM node:20.11.1-alpine # Define some ENV Vars ENV PORT=80 \