Dockerfile 915 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # The examples Docker image adds dependencies needed to run the examples
  2. FROM rayproject/ray:latest
  3. # Needed to run Tune example with a 'plot' call - which does not actually render a plot, but throws an error.
  4. RUN apt-get update && apt-get install -y zlib1g-dev libgl1-mesa-dev libgtk2.0-dev && apt-get clean
  5. RUN pip install --no-cache-dir -U pip \
  6. autorom[accept-rom-license] \
  7. gym[atari] \
  8. scikit-image \
  9. tensorflow \
  10. lz4 \
  11. pytest-timeout \
  12. smart_open \
  13. tensorflow_probability \
  14. dm_tree \
  15. h5py # Mutes FutureWarnings \
  16. bayesian-optimization \
  17. hyperopt \
  18. ConfigSpace==0.4.10 \
  19. sigopt \
  20. nevergrad \
  21. scikit-optimize \
  22. hpbandster \
  23. lightgbm \
  24. xgboost \
  25. torch \
  26. torchvision \
  27. tensorboardX \
  28. dragonfly-opt \
  29. zoopt \
  30. tabulate \
  31. mlflow \
  32. pytest-remotedata>=0.3.1 \
  33. matplotlib \
  34. jupyter \
  35. pandas