add dockerfile
This commit is contained in:
parent
5a8bf27936
commit
1a5970c70b
1 changed files with 27 additions and 0 deletions
27
deployment_scripts/ray.dockerfile
Normal file
27
deployment_scripts/ray.dockerfile
Normal file
|
@ -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
|
Loading…
Reference in a new issue