🐳 Updates Docker images to use latest Node LTS runtime

This commit is contained in:
Alicia Sykes
2022-02-04 22:23:05 +00:00
parent 969679fc49
commit 2135ed77ca
3 changed files with 33 additions and 52 deletions

View File

@@ -1,4 +1,4 @@
FROM node:14.18.2-alpine AS BUILD_IMAGE
FROM node:16.13.2-alpine3.15 AS BUILD_IMAGE
ARG TARGETPLATFORM
ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64}
@@ -24,7 +24,7 @@ COPY . ./
RUN yarn build
# Build the final image
FROM node:14.18.2-alpine
FROM node:16.13.2-alpine3.15
# Define some ENV Vars
ENV PORT=80 \