mirror of
https://github.com/vale981/ray
synced 2025-03-06 18:41:40 -05:00

* updated Docker files * single Docker RUN for apt-get installs and cleanup * stylistic cleanup
18 lines
898 B
Docker
18 lines
898 B
Docker
# The deploy Docker image build a self-contained Ray instance suitable
|
|
# for end users.
|
|
|
|
FROM ubuntu:xenial
|
|
RUN apt-get update \
|
|
&& apt-get install -y vim git wget \
|
|
&& apt-get install -y cmake build-essential autoconf curl libtool libboost-all-dev unzip \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
RUN echo 'export PATH=/opt/conda/bin:$PATH' > /etc/profile.d/conda.sh \
|
|
&& wget --quiet 'https://repo.continuum.io/archive/Anaconda2-4.2.0-Linux-x86_64.sh' -O /tmp/anaconda.sh \
|
|
&& /bin/bash /tmp/anaconda.sh -b -p /opt/conda \
|
|
&& rm /tmp/anaconda.sh
|
|
ENV PATH "/opt/conda/bin:$PATH"
|
|
RUN conda install libgcc
|
|
RUN pip install --upgrade pip
|
|
RUN pip install --upgrade "git+git://github.com/cloudpipe/cloudpickle.git@0d225a4695f1f65ae1cbb2e0bbc145e10167cce4"
|
|
RUN pip install --upgrade --verbose "git+git://github.com/ray-project/ray.git#egg=numbuf&subdirectory=numbuf"
|