Skip to content

Commit

Permalink
Fix ray docker build (ray-project#40525)
Browse files Browse the repository at this point in the history
Fix ray docker build step. The .whl folder contains both the ray and ray-cpp wheel, and we need to copy both over.

Signed-off-by: can <can@anyscale.com>
  • Loading branch information
can-anyscale authored Oct 20, 2023
1 parent e4feeb4 commit e19b0eb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ci/build/build-ray-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ PIP_FREEZE_FILE="$5"

CPU_TMP="$(mktemp -d)"

mkdir -p "${CPU_TMP}/.whl"

cp .whl/"$WHEEL_NAME" "${CPU_TMP}/.whl/${WHEEL_NAME}"
cp -r .whl "${CPU_TMP}/.whl"
cp docker/ray/Dockerfile "${CPU_TMP}/Dockerfile"
cp python/requirements_compiled.txt "${CPU_TMP}/."

Expand Down

0 comments on commit e19b0eb

Please sign in to comment.