Skip to content

Commit

Permalink
Use glob pattern in Dockerfile while installing python package (#24)
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Liu <[email protected]>
  • Loading branch information
austin362667 authored Oct 7, 2024
1 parent ead1e4e commit 43466ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions k8s/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 43466ed

Please sign in to comment.