This is an automated email from the ASF dual-hosted git repository.
agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-ray.git
The following commit(s) were added to refs/heads/main by this push:
new 43466ed Use glob pattern in Dockerfile while installing python
package (#24)
43466ed is described below
commit 43466ed4747063e8f396fd63e53106cf1c8c6614
Author: Austin Liu <[email protected]>
AuthorDate: Tue Oct 8 07:24:09 2024 +0800
Use glob pattern in Dockerfile while installing python package (#24)
Signed-off-by: Austin Liu <[email protected]>
---
k8s/Dockerfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/k8s/Dockerfile b/k8s/Dockerfile
index 9fb4531..20294e9 100644
--- a/k8s/Dockerfile
+++ b/k8s/Dockerfile
@@ -30,5 +30,5 @@ RUN source venv/bin/activate && \
maturin build --release
FROM rayproject/ray:2.37.0.cabc24-py312
-COPY --from=0
/home/ray/target/wheels/datafusion_ray-0.6.0-cp38-abi3-manylinux_2_35_x86_64.whl
/home/ray/datafusion_ray-0.6.0-cp38-abi3-manylinux_2_35_x86_64.whl
-RUN pip3 install
/home/ray/datafusion_ray-0.6.0-cp38-abi3-manylinux_2_35_x86_64.whl
+COPY --from=0 /home/ray/target/wheels/*.whl /home/ray/
+RUN pip3 install /home/ray/*.whl
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]