Skip to content

Commit

Permalink
revert contribute.md changes and ray_plugin
Browse files Browse the repository at this point in the history
Signed-off-by: Future-Outlier <[email protected]>
  • Loading branch information
Future-Outlier committed Mar 6, 2024
1 parent 95f4a9a commit b9f28bf
Show file tree
Hide file tree
Showing 4 changed files with 456 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/contribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ documentation.
Verify that the code and documentation look as expected:

- Learn about the documentation tools [here](https://docs.flyte.org/en/latest/community/contribute.html#documentation)
- Install the requirements by running `pip install -r docs-requirements.in`.
- Install the requirements by running `pip install -r docs-requirements.txt`.
- Run `make -C docs html`

```{tip}
Expand Down
24 changes: 24 additions & 0 deletions examples/ray_plugin/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# ######################
# NOTE: For CI/CD only #
########################
FROM rayproject/ray:2.5.1-py310-cpu
LABEL org.opencontainers.image.source=https://github.com/flyteorg/flytesnacks

WORKDIR /root
ENV VENV /opt/venv
ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8
ENV PYTHONPATH /root
USER root

# Install Python dependencies
COPY requirements.in /root
RUN pip install -r /root/requirements.in

# Copy the actual code
COPY . /root/

# This tag is supplied by the build script and will be used to determine the version
# when registering tasks, workflows, and launch plans
ARG tag
ENV FLYTE_INTERNAL_IMAGE $tag
2 changes: 2 additions & 0 deletions examples/ray_plugin/requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
flytekitplugins-ray
flytekitplugins-envd
Loading

0 comments on commit b9f28bf

Please sign in to comment.