From f727f2ceb47ff0580f21d0a952565442f1f830c1 Mon Sep 17 00:00:00 2001 From: Anatoli Babenia Date: Tue, 28 Jul 2020 11:33:28 +0300 Subject: [PATCH] Do not store `pip` cache -42MB --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 05c7dd8..c1d6b48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN apk add --update --no-cache git py3-six py3-pygments py3-yaml py3-gevent \ libstdc++ py3-colorama py3-requests py3-icu py3-redis ## building missing python packages RUN apk add --no-cache --virtual build-deps py3-pip g++ python3-dev \ - && pip3 install rapidfuzz colored polyglot pycld2 \ + && pip3 install --no-cache-dir rapidfuzz colored polyglot pycld2 \ && apk del build-deps ## copying WORKDIR /app