mirror of
https://github.com/wassname/ray.git
synced 2026-07-09 05:33:57 +08:00
2526c06b5e
* cleanup-base deps * only build base-deps a bit * remove parens * formatting * add ray-deps * gpu enabled * always include wheel * fix script * log new variables * run tests for docker * try to include env variables * source files * remove bash when sourcing * add new lines * use wget * dual build autoscaler * switch to gnupg * add gcc cmake * remove blist * clarify build-docker-images
10 lines
290 B
Docker
10 lines
290 B
Docker
ARG GPU=""
|
|
FROM rayproject/base-deps:latest"$GPU"
|
|
ARG WHEEL_PATH
|
|
# For Click
|
|
ENV LC_ALL=C.UTF-8
|
|
ENV LANG=C.UTF-8
|
|
COPY $WHEEL_PATH .
|
|
RUN $HOME/anaconda3/bin/pip --no-cache-dir install `basename $WHEEL_PATH`[all] && \
|
|
$HOME/anaconda3/bin/pip uninstall ray -y && rm `basename $WHEEL_PATH`
|