From d48901bab9f7a48f56b774245c399f1b079219e7 Mon Sep 17 00:00:00 2001 From: Jon Date: Mon, 15 Jan 2024 01:36:21 +0930 Subject: [PATCH] fix(docker_cache): ensure .tar.gz are built to wheels !184 --- dockerfile-build_cache | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dockerfile-build_cache b/dockerfile-build_cache index 107a6bd..3cceb30 100644 --- a/dockerfile-build_cache +++ b/dockerfile-build_cache @@ -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