From 7ee26d9b8035087166400743e8ed493c1f684d24 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sat, 30 Oct 2021 12:03:13 -0500 Subject: [PATCH] =?UTF-8?q?fix(web):=20=F0=9F=90=9B=20use=20node=2016=20un?= =?UTF-8?q?til=20CRA=20fixed=20ref=20https://github.com/facebook/create-re?= =?UTF-8?q?act-app/issues/11565?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/Dockerfile b/web/Dockerfile index 1527469be..c26a81947 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -4,7 +4,9 @@ LABEL org.opencontainers.image.description="filterlists.com | github.com/collinb COPY server/conf.d /etc/nginx/conf.d # init build -FROM node:alpine as build +# https://github.com/facebook/create-react-app/issues/11565 +# FROM node:alpine as build +FROM node:lts-alpine3.14 as build # https://github.com/nodejs/docker-node/blob/master/docs/BestPractices.md#node-gyp-alpine RUN apk add --no-cache python3 make g++