Skip to content

Commit 43466ed

Browse files
authored
Use glob pattern in Dockerfile while installing python package (#24)
Signed-off-by: Austin Liu <[email protected]>
1 parent ead1e4e commit 43466ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

k8s/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ RUN source venv/bin/activate && \
3030
maturin build --release
3131

3232
FROM rayproject/ray:2.37.0.cabc24-py312
33-
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
34-
RUN pip3 install /home/ray/datafusion_ray-0.6.0-cp38-abi3-manylinux_2_35_x86_64.whl
33+
COPY --from=0 /home/ray/target/wheels/*.whl /home/ray/
34+
RUN pip3 install /home/ray/*.whl

0 commit comments

Comments
 (0)