From 139eb99ea92693343f2703e9acadadb4730b95b7 Mon Sep 17 00:00:00 2001 From: Hans van den Bogert Date: Sat, 11 Apr 2020 13:45:23 +0200 Subject: [PATCH] Fix: use python3 explicitly This was problematic for docker 1.1x image otherwise --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 892c09b..b8dad83 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM docker:${DOCKER_VERSION} ARG COMPOSE_VERSION= ARG DOCKER_VERSION -RUN apk add --no-cache py3-pip +RUN apk add --no-cache py3-pip python3 RUN apk add --virtual build-dependencies python3-dev libffi-dev openssl-dev gcc libc-dev make \ && pip3 install "docker-compose${COMPOSE_VERSION:+==}${COMPOSE_VERSION}" \ && apk del build-dependencies