Dockerfile: add --no-cache to save some space

master
pictuga 2020-10-01 22:33:29 +02:00
parent 5cd6c22d73
commit 03a122c41f
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
FROM alpine:latest
RUN apk add python3 py3-lxml py3-gunicorn py3-pip git
RUN apk add --no-cache python3 py3-lxml py3-gunicorn py3-pip git
ADD . /app
RUN pip3 install /app