From cbb64168302301595f277b1eae337189c3e528a6 Mon Sep 17 00:00:00 2001 From: Andrei Canta Date: Tue, 21 Mar 2023 21:22:58 +0200 Subject: [PATCH] install g++ in docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9ca85b5..066a18f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Build the react project FROM node:18-alpine as builder -RUN apk --no-cache add python3 make +RUN apk add --no-cache python make g++ WORKDIR /app