Dockerfile 881 B

123456789101112131415161718192021222324252627282930313233343536
  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. gym[atari] \
  7. scikit-image \
  8. tensorflow \
  9. lz4 \
  10. pytest-timeout \
  11. smart_open \
  12. tensorflow_probability \
  13. dm_tree \
  14. h5py # Mutes FutureWarnings \
  15. bayesian-optimization \
  16. hyperopt \
  17. ConfigSpace==0.4.10 \
  18. sigopt \
  19. nevergrad \
  20. scikit-optimize \
  21. hpbandster \
  22. lightgbm \
  23. xgboost \
  24. torch \
  25. torchvision \
  26. tensorboardX \
  27. dragonfly-opt \
  28. zoopt \
  29. tabulate \
  30. mlflow \
  31. pytest-remotedata>=0.3.1 \
  32. matplotlib \
  33. jupyter \
  34. pandas