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 \