fix(docker_cache): ensure .tar.gz are built to wheels

!184
This commit is contained in:
2024-01-15 01:36:21 +09:30
parent 0ae0fadfd2
commit d48901bab9

View File

@ -98,7 +98,8 @@ RUN cd /tmp/python_modules \
RUN cd /tmp/python_modules \
# && export PATH=$PATH:~/.cargo/bin \
&& echo "[DEBUG] PATH=$PATH" \
&& pip wheel --wheel-dir /tmp/python_builds --find-links . *.whl
&& pip wheel --wheel-dir /tmp/python_builds --find-links . *.whl; \
pip wheel --wheel-dir /tmp/python_builds --find-links . *.tar.gz;
RUN cd /tmp; \
ls -laR