Add make to Dockerfile
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Lukáš Kucharczyk 2023-01-03 00:15:17 +01:00
parent 9d142126b1
commit ab9d8d1ae3
1 changed files with 1 additions and 0 deletions

View File

@ -2,6 +2,7 @@ FROM python:3.10-slim-bullseye
RUN apt update \ RUN apt update \
&& apt install --no-install-recommends --yes \ && apt install --no-install-recommends --yes \
git \ git \
make \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
ENV VIRTUAL_ENV=/opt/venv ENV VIRTUAL_ENV=/opt/venv
RUN python3 -m venv pip $VIRTUAL_ENV RUN python3 -m venv pip $VIRTUAL_ENV