From ab9d8d1ae3c65780c00090d4c4e6c1b26a094112 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Tue, 3 Jan 2023 00:15:17 +0100 Subject: [PATCH] Add make to Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a7a6de3..b29962d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM python:3.10-slim-bullseye RUN apt update \ && apt install --no-install-recommends --yes \ git \ + make \ && rm -rf /var/lib/apt/lists/* ENV VIRTUAL_ENV=/opt/venv RUN python3 -m venv pip $VIRTUAL_ENV