From 51dab21b6f4146da5bb4d17c273bd210900accb9 Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 17 Feb 2021 17:14:08 -0500 Subject: [PATCH] fix py crypto builds --- Dockerfile | 5 +++-- Dockerfile.aarch64 | 5 +++-- Dockerfile.armhf | 6 ++++-- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2737191..eef9fda 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,9 +23,10 @@ RUN \ git clone https://github.com/docker/compose.git && \ cd compose && \ git checkout ${COMPOSE_VERSION} && \ - pip3 install \ + pip3 install -U pip && \ + pip install \ pyinstaller && \ - pip3 install \ + pip install \ -r requirements.txt \ -r requirements-build.txt && \ ./script/build/write-git-sha > compose/GITSHA && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 1fa207e..f5f48b1 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -24,9 +24,10 @@ RUN \ git clone https://github.com/docker/compose.git && \ cd compose && \ git checkout ${COMPOSE_VERSION} && \ - pip3 install \ + pip3 install -U pip && \ + pip install \ pyinstaller && \ - pip3 install \ + pip install \ -r requirements.txt \ -r requirements-build.txt && \ ./script/build/write-git-sha > compose/GITSHA && \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index cf7a176..2016b35 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -12,6 +12,7 @@ RUN \ python3 \ python3-dev \ python3-pip \ + rustc \ zlib1g-dev RUN \ @@ -24,9 +25,10 @@ RUN \ git clone https://github.com/docker/compose.git && \ cd compose && \ git checkout ${COMPOSE_VERSION} && \ - pip3 install \ + pip3 install -U pip && \ + pip install \ pyinstaller && \ - pip3 install \ + pip install \ -r requirements.txt \ -r requirements-build.txt && \ ./script/build/write-git-sha > compose/GITSHA && \