From 2865aa21bde2a567681e22986c6e59e9c7fb71bf Mon Sep 17 00:00:00 2001 From: aptalca <aptalca@users.noreply.github.com> Date: Mon, 28 Mar 2022 10:36:56 -0400 Subject: [PATCH] fix pip install --- Dockerfile | 1 + Dockerfile.aarch64 | 1 + Dockerfile.armhf | 1 + 3 files changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index a52dee2..e6b4d30 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,6 +43,7 @@ RUN \ cd /app/kanzi && \ echo ${KANZI_RELEASE} > version.txt && \ touch /app/kanzi/deployed-kanzi.txt && \ + sed -i 's|git+git|git+https|g' requirements.txt && \ pip install --no-cache-dir pip==9.0.3 && \ pip install -r \ requirements.txt \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index d93b39f..f0696c2 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -43,6 +43,7 @@ RUN \ cd /app/kanzi && \ echo ${KANZI_RELEASE} > version.txt && \ touch /app/kanzi/deployed-kanzi.txt && \ + sed -i 's|git+git|git+https|g' requirements.txt && \ pip install --no-cache-dir pip==9.0.3 && \ pip install -r \ requirements.txt \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 4f49bd6..c1f482d 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -43,6 +43,7 @@ RUN \ cd /app/kanzi && \ echo ${KANZI_RELEASE} > version.txt && \ touch /app/kanzi/deployed-kanzi.txt && \ + sed -i 's|git+git|git+https|g' requirements.txt && \ pip install --no-cache-dir pip==9.0.3 && \ pip install -r \ requirements.txt \