adding apt update

This commit is contained in:
Mylloon 2021-08-10 10:30:50 +02:00
parent 32fcfed7fe
commit cf18f40af8

View file

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