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 \