From 70e1424832584f06edd877a84c92504c6e6b0962 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Lucas?= Date: Thu, 31 Jan 2019 09:40:10 +0100 Subject: [PATCH] Pin pip to 18.1 till the bug described there https://github.com/pypa/pip/issues/6158 is not fixed --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2a7af31..b023232 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ ADD "https://raw.githubusercontent.com/home-assistant/home-assistant/${VERSION}/ RUN apk add --no-cache git python3 ca-certificates libffi-dev libressl-dev nmap iputils && \ addgroup -g ${GUID} hass && \ adduser -h /data -D -G hass -s /bin/sh -u ${UID} hass && \ - pip3 install --upgrade --no-cache-dir pip && \ + pip3 install --upgrade --no-cache-dir pip==18.1 && \ apk add --no-cache --virtual=build-dependencies build-base linux-headers python3-dev tzdata && \ cp "/usr/share/zoneinfo/${TIMEZONE}" /etc/localtime && echo "${TIMEZONE}" > /etc/timezone && \ sed '/^$/q' /tmp/requirements_all.txt > /tmp/requirements_core.txt && \