From d80a7b3df8873cf2f321fca2e04965b30da7988e Mon Sep 17 00:00:00 2001 From: David <9059044+Tansito@users.noreply.github.com> Date: Thu, 8 Aug 2024 15:14:39 -0400 Subject: [PATCH] Update references from old ray image --- docs/deployment/custom_function/Sample-Dockerfile | 2 +- docs/deployment/deploying_custom_image_function.rst | 2 +- docs/deployment/example_custom_image_function.rst | 2 +- tests/basic/function/Sample-Docker | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/deployment/custom_function/Sample-Dockerfile b/docs/deployment/custom_function/Sample-Dockerfile index 437adcd68..ef875759d 100644 --- a/docs/deployment/custom_function/Sample-Dockerfile +++ b/docs/deployment/custom_function/Sample-Dockerfile @@ -9,4 +9,4 @@ WORKDIR /runner COPY ./runner.py /runner WORKDIR / -USER $RAY_UID +USER 1000 diff --git a/docs/deployment/deploying_custom_image_function.rst b/docs/deployment/deploying_custom_image_function.rst index 30812c7ca..220fb449a 100644 --- a/docs/deployment/deploying_custom_image_function.rst +++ b/docs/deployment/deploying_custom_image_function.rst @@ -61,7 +61,7 @@ In our simple case it will look something like this: COPY ./runner.py /runner WORKDIR / - USER $RAY_UID + USER 1000 and after that we need to build it: diff --git a/docs/deployment/example_custom_image_function.rst b/docs/deployment/example_custom_image_function.rst index 2fac0dd2c..b88c998d0 100644 --- a/docs/deployment/example_custom_image_function.rst +++ b/docs/deployment/example_custom_image_function.rst @@ -61,7 +61,7 @@ Dockerfile COPY ./runner.py /runner WORKDIR / - USER $RAY_UID + USER 1000 Build container image diff --git a/tests/basic/function/Sample-Docker b/tests/basic/function/Sample-Docker index f3d80c4ea..995c5df1a 100644 --- a/tests/basic/function/Sample-Docker +++ b/tests/basic/function/Sample-Docker @@ -9,7 +9,7 @@ WORKDIR /runner COPY function/runner.py . WORKDIR / -USER $RAY_UID +USER 1000