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).