From cfbb3d7e5ace0dbc0e82b0503e97eb8aa039e543 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 26 Apr 2019 15:49:36 +0200 Subject: [PATCH] Poetry'ising the docker stuff --- docker/3_buildwheels/build.sh | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/docker/3_buildwheels/build.sh b/docker/3_buildwheels/build.sh index 836eaec..a131ae8 100755 --- a/docker/3_buildwheels/build.sh +++ b/docker/3_buildwheels/build.sh @@ -30,15 +30,23 @@ docker run --rm -i \ -v "$TOPDEVDIR:/data/topdev" \ armadillica/pillar_wheelbuilder < /data/wheelhouse/requirements.txt + +pip3 wheel --wheel-dir=/data/wheelhouse -r /data/wheelhouse/requirements.txt chown -R $UID:$GID /data/wheelhouse # Install the dependencies so that we can get a full freeze. -pip3 install --no-index --find-links=/data/wheelhouse -r requirements.txt -pip3 freeze | grep -v '^-[ef] ' > /data/wheelhouse/requirements.txt +# pip3 install --no-index --find-links=/data/wheelhouse -r /data/wheelhouse/requirements.txt +# pip3 freeze | grep -v '^-[ef] ' > /data/wheelhouse/requirements.txt EOT # Remove our own projects, they shouldn't be installed as wheel (for now).