ray/docker
Alex Wu 3d668768de
[docker] Upgrade numpy version (#20450)
<!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the access to it, we will shortly find a reviewer and assign them to your PR. -->

## Why are these changes needed?

The change in #20374 was interpreted as a file redirect, not a "greater than" by docker (strangely enough, differently than bash interprets it locally). 

<!-- Please give a short summary of the change and the problem this solves. -->

## Related issue number

<!-- For example: "Closes #1234" -->

## Checks

- [ ] I've run `scripts/format.sh` to lint the changes in this PR.
- [ ] I've included any doc changes needed for https://docs.ray.io/en/master/.
- [ ] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/
- Testing Strategy
   - [ ] Unit tests
   - [ ] Release tests
   - [ ] This PR is not tested :(


Co-authored-by: Alex <alex@anyscale.com>
2021-11-17 07:15:18 -08:00
..
autoscaler Revert "Revert "[Docker] Support multiple CUDA Versions (#19505)" (#19756)" (#19763) 2021-10-26 17:32:56 -07:00
base-deps [docker] Upgrade numpy version (#20450) 2021-11-17 07:15:18 -08:00
development [docker] Fix docker 'development' build failure (#13289) 2021-02-25 14:57:30 -08:00
examples [RLlib] Upgrade gym version to 0.21 and deprecate pendulum-v0. (#19535) 2021-11-03 16:24:00 +01:00
ray [docs] Fix broken links in documentation and add linkcheck to documentation (#20030) 2021-11-04 13:19:43 -07:00
ray-deps Revert "Revert "[Docker] Support multiple CUDA Versions (#19505)" (#19756)" (#19763) 2021-10-26 17:32:56 -07:00
ray-ml [Tune; Testing] Revert to 3.7 (undone by accident by previous PR); + some minor comment cleanups. (#20031) 2021-11-04 10:58:34 +01:00
ray-worker-container [RLlib] Upgrade gym version to 0.21 and deprecate pendulum-v0. (#19535) 2021-11-03 16:24:00 +01:00
retag-lambda Revert "Revert "[Docker] Support multiple CUDA Versions (#19505)" (#19756)" (#19763) 2021-10-26 17:32:56 -07:00
fix-docker-latest.sh Revert "Revert "[Docker] Support multiple CUDA Versions (#19505)" (#19756)" (#19763) 2021-10-26 17:32:56 -07:00
README.md [CI] Fix-Up Docker Build (Use Python) (#11139) 2020-10-12 14:22:51 -07:00

Overview of how the ray images are built:

Images without a "-cpu" or "-gpu" tag are built on ubuntu/focal. They are just an alias for -cpu (e.g. ray:latest is the same as ray:latest-cpu).

ubuntu/focal
└── base-deps:cpu
    └── ray-deps:cpu
        └── ray:cpu
            └── ray-ml:cpu

nvidia/cuda
└── base-deps:gpu
    └── ray-deps:gpu
        └── ray:gpu
            └── ray-ml:gpu