From 37a4ccf1441a25555e5c2cc043e39229ca4cf1e1 Mon Sep 17 00:00:00 2001 From: Andrei Canta Date: Tue, 21 Mar 2023 21:18:46 +0200 Subject: [PATCH] install make in docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6289d7c..9ca85b5 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 +RUN apk --no-cache add python3 make WORKDIR /app