From 243437564f95375fabfe6622fdaaab2f7afca728 Mon Sep 17 00:00:00 2001 From: F1nnM Date: Mon, 3 May 2021 23:20:27 +0200 Subject: [PATCH] Added g++ --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index b1e0291..8c5c170 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -9,7 +9,7 @@ ENV PATH /app/node_modules/.bin:$PATH # install app dependencies COPY package.json ./ COPY package-lock.json ./ -RUN apk --no-cache --virtual build-dependencies add python make +RUN apk --no-cache --virtual build-dependencies add python make g++ RUN npm ci RUN npm install react-scripts@3.4.1 -g