Adding git

This commit is contained in:
Mylloon 2021-08-10 10:29:01 +02:00
parent 7d25374fd9
commit 32fcfed7fe

View file

@ -3,7 +3,9 @@ FROM python:3.8.11-slim
ENV DOCKER_KASSOUBOT=True ENV DOCKER_KASSOUBOT=True
COPY requirements.txt . COPY requirements.txt .
RUN pip install -r requirements.txt RUN apt install git && \
pip install -r requirements.txt && \
apt remove git
COPY README.md . COPY README.md .
COPY src . COPY src .