From cb4031b422b4146ab22a6300407a36f0cdc69d14 Mon Sep 17 00:00:00 2001 From: LDericher <40151420+ldericher@users.noreply.github.com> Date: Wed, 4 Aug 2021 03:46:57 +0200 Subject: [PATCH] Docker --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 80a9656..578e0f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,14 +12,14 @@ COPY Pipfile Pipfile.lock ./ RUN set -ex; \ \ # install build prerequisites - apk add -t build_reqs --no-cache \ + apk add --no-cache \ build-base \ jpeg-dev \ zlib-dev \ ; \ pipenv sync; \ # remove build prerequisites - apk del --no-cache build_reqs; + apk del --no-cache build-base; COPY . .