From e4d88c1732001b95c66e7851c8f490ce050a0549 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sat, 27 Feb 2021 00:40:24 +0000 Subject: [PATCH] fix(core): update --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bfd4bf4..5512d1e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,5 +33,9 @@ RUN set -ex \ ENV LD_PRELOAD /lib/stack-fix.so RUN npm config set unsafe-perm true -RUN apk add --update py-pip3 && pip3 install docker-compose +RUN apk update && \ + apk add --no-cache docker-cli python3 && \ + apk add --no-cache --virtual .docker-compose-deps python3-dev libffi-dev openssl-dev gcc libc-dev make && \ + pip3 install docker-compose && \ + apk del .docker-compose-deps