From 03a122c41f1018a01aa2f114c6d39a2cb7f3cf8f Mon Sep 17 00:00:00 2001 From: pictuga Date: Thu, 1 Oct 2020 22:33:29 +0200 Subject: [PATCH] Dockerfile: add --no-cache to save some space --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4d944c5..7d23507 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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