From f7c211b7481fa80cfbbd0186723e63d4f693db4a Mon Sep 17 00:00:00 2001 From: Benjamin Montgomery Date: Thu, 21 Apr 2022 07:58:27 -0400 Subject: [PATCH] update node image version --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8d7b15ed..029e2cb2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16.13.2-alpine AS BUILD_IMAGE +FROM node:16.14.2-alpine AS BUILD_IMAGE # Set the platform to build image for ARG TARGETPLATFORM @@ -25,7 +25,7 @@ COPY . ./ RUN yarn build # Production stage -FROM node:16.13.2-alpine +FROM node:16.14.2-alpine # Define some ENV Vars ENV PORT=80 \