app_config.yaml 423 B

12345678910111213141516
  1. base_image: {{ env["RAY_IMAGE_ML_NIGHTLY_GPU"] | default("anyscale/ray-ml:nightly-py37-gpu") }}
  2. env_vars: {}
  3. debian_packages:
  4. - curl
  5. python:
  6. pip_packages:
  7. - pytest
  8. - awscli
  9. - gym==0.21.0
  10. conda_packages: []
  11. post_build_cmds:
  12. - pip uninstall -y ray || true
  13. - pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
  14. - {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}