disable pip cache, probably smaller Docker image

This commit is contained in:
Daniel Langbein 2023-01-07 18:55:49 +01:00
parent 56ea7c3a85
commit 8f21ad6952

View File

@ -2,7 +2,7 @@ FROM python:3.10
WORKDIR /app WORKDIR /app
COPY . /app COPY . /app
RUN pip install -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
ENV PYTHONPATH=/app/src ENV PYTHONPATH=/app/src