From 87cf8f5aae63d41cc5ab7884fc6d1c407d6d1852 Mon Sep 17 00:00:00 2001 From: Conduitry Date: Fri, 15 Oct 2021 06:35:12 -0400 Subject: [PATCH] update to Node 14 in Dockerfile --- site/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/Dockerfile b/site/Dockerfile index 29fe4f435f..493cfe3f93 100644 --- a/site/Dockerfile +++ b/site/Dockerfile @@ -1,7 +1,7 @@ # IMPORTANT: Don't use this Dockerfile in your own projects without also looking at the .dockerignore file. # Without an appropriate .dockerignore, this Dockerfile will copy a large number of unneeded files into your image. -FROM mhart/alpine-node:12 +FROM mhart/alpine-node:14 # install dependencies WORKDIR /app @@ -12,7 +12,7 @@ RUN npm ci --production # Only copy over the Node pieces we need # ~> Saves 35MB ### -FROM mhart/alpine-node:slim-12 +FROM mhart/alpine-node:slim-14 WORKDIR /app COPY --from=0 /app .