From c04ebcabbdd71986a5c975496747155b3df593c2 Mon Sep 17 00:00:00 2001 From: Gerald Pape Date: Wed, 24 Feb 2021 10:16:02 +0100 Subject: [PATCH] Update node container version to 14.16-alpine (#433) * Update node container version to 14.16-alpine * Also use node:14.16-alpine in tests --- Dockerfile | 4 ++-- tests/tests-Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 12975649..06b1f8f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:14-alpine as build +FROM node:14.16-alpine as build ENV NODE_ENV=production @@ -23,7 +23,7 @@ RUN yarn create-version-file \ && rm -rf .git .scripts # Final stage -FROM node:14-alpine +FROM node:14.16-alpine ENV NODE_ENV=production diff --git a/tests/tests-Dockerfile b/tests/tests-Dockerfile index e83ae048..cf4d2405 100644 --- a/tests/tests-Dockerfile +++ b/tests/tests-Dockerfile @@ -1,4 +1,4 @@ -FROM node:14-alpine +FROM node:14.16-alpine # YARN_PRODUCTION=false is a workaround for https://github.com/yarnpkg/yarn/issues/4557 ENV NODE_ENV=production \