Adding git
This commit is contained in:
parent
7d25374fd9
commit
32fcfed7fe
1 changed files with 3 additions and 1 deletions
|
@ -3,7 +3,9 @@ FROM python:3.8.11-slim
|
|||
ENV DOCKER_KASSOUBOT=True
|
||||
|
||||
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 src .
|
||||
|
|
Reference in a new issue