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