Add make to Dockerfile
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Lukáš Kucharczyk 2023-01-03 00:15:17 +01:00
parent 9d142126b1
commit ab9d8d1ae3

View File

@ -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