From 1a5970c70be18ee2ecb544a44598d0ca407da57f Mon Sep 17 00:00:00 2001 From: Kerem Kayabay Date: Wed, 7 Feb 2024 14:42:39 +0000 Subject: [PATCH] add dockerfile --- deployment_scripts/ray.dockerfile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 deployment_scripts/ray.dockerfile diff --git a/deployment_scripts/ray.dockerfile b/deployment_scripts/ray.dockerfile new file mode 100644 index 0000000..24ecffd --- /dev/null +++ b/deployment_scripts/ray.dockerfile @@ -0,0 +1,27 @@ +FROM python:3.9 + +# ------------------------------------------------------------------- +# Install Ray and essential packages. +# For more information on Ray installation, see: +# https://docs.ray.io/en/latest/ray-overview/installation.html +# Install the latest Dask versions that are compatible with +# Ray nightly. For more information, see: +# https://docs.ray.io/en/latest/data/dask-on-ray.html +# ------------------------------------------------------------------- + +RUN pip install --no-cache-dir \ +"ray==2.8.0" \ +"ray[default]==2.8.0" \ +"dask==2022.10.1" \ +torch \ +"pydantic<2" \ +six \ +"tqdm<2" \ +"pandas<2" \ +scikit-learn \ +matplotlib \ +optuna \ +seaborn \ +tabulate \ +jupyterlab \ +autopep8 \ No newline at end of file