diff --git a/Dockerfile b/Dockerfile index 57186aea..7bd823ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16.13.2-alpine AS BUILD_IMAGE +FROM node:16.20-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:16.20-alpine # Define some ENV Vars ENV PORT=80 \