From f50862ec7049aa74abd846b36a1064bcd4482a06 Mon Sep 17 00:00:00 2001 From: amorozov Date: Thu, 30 Mar 2023 20:19:00 +0300 Subject: [PATCH] feature: updated Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index e0c3faf..0d2c3f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,8 @@ ENV GROOVY_VERSION=4.0.9 RUN apk update && \ apk add --no-cache docker-cli python3 py3-pip git bash && \ apk add --no-cache --virtual .docker-compose-deps python3-dev libffi-dev openssl-dev gcc libc-dev make && \ + ln -s /usr/bin/pip3 /usr/bin/pip && \ + ln -s /usr/bin/python3 /usr/bin/python && \ pip3 install docker-compose && \ apk del .docker-compose-deps