File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change 1717ARG base_image=rayproject/ray:1.4.0-py38
1818FROM ${base_image}
1919
20+ USER root
21+ RUN apt-get update && apt-get install -y build-essential
22+
2023COPY --chown=ray:users setup.py requirements.txt codeflare/
2124COPY --chown=ray:users codeflare codeflare/codeflare
2225COPY --chown=ray:users notebooks codeflare/notebooks
2326COPY --chown=ray:users resources codeflare/resources
2427
25- # RUN pip install -r ./codeflare/requirements.txt
26-
27- USER root
28- RUN apt-get update && apt-get install -y build-essential
28+ USER ray
2929
3030RUN apt-get update
3131RUN apt-get install gcc
3232
33- RUN pip install sklearn
34- RUN pip install pandas
35- RUN pip install numpy
36-
3733RUN pip install jupyterlab
3834
35+ RUN pip install -r ./codeflare/requirements.txt
36+
3937RUN pip install -e ./codeflare
You can’t perform that action at this time.
0 commit comments