mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix(web): 🐛 use node 16 until CRA fixed ref https://github.com/facebook/create-react-app/issues/11565
This commit is contained in:
parent
dc3fc950c5
commit
7ee26d9b80
1 changed files with 3 additions and 1 deletions
|
|
@ -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++
|
||||
|
|
|
|||
Loading…
Reference in a new issue