Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docker] Publish installed packages in docker containers #35390

Merged
merged 3 commits into from
May 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions doc/source/ray-overview/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -495,3 +495,27 @@ that you've cloned the git repository.
.. code-block:: bash

python -m pytest -v python/ray/tests/test_mini.py


Installed Python dependencies
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How frequently should this be updated? Should the release manager be updating this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I think the release manager should update it while preparing a release (for the latest documentation). I can add this to the release process doc.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Our docker images are shipped with pre-installed Python dependencies
required for Ray and its libraries.

We publish the dependencies that are installed in our ``ray`` and ``ray-ml``
Docker images for Python 3.9.

.. tabs::

.. group-tab:: ray (Python 3.9)

Ray version: nightly (`0d880e3 <https://github.com/ray-project/ray/commit/0d880e351d3c52bcb84207e397c531088c11ffda>`_)

.. literalinclude:: ./pip_freeze_ray-py39-cpu.txt

.. group-tab:: ray-ml (Python 3.9)

Ray version: nightly (`0d880e3 <https://github.com/ray-project/ray/commit/0d880e351d3c52bcb84207e397c531088c11ffda>`_)

.. literalinclude:: ./pip_freeze_ray-ml-py39-cpu.txt
Loading