Removing cache dir

This commit is contained in:
0x6f736f646f
2020-03-12 01:47:54 +03:00
parent 084c3cc940
commit 8f4ce19433
+1 -1
View File
@@ -2,5 +2,5 @@ FROM python:3.7-slim
LABEL maintainer="Rodney Osodo"
WORKDIR /app
COPY requirements.txt .
RUN pip3 install -r requirements.txt
RUN pip3 install --no-cache-dir -r requirements.txt
COPY app.py .