2016-12-31 17:21:33 -08:00
|
|
|
# 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 \
|
2017-10-09 23:39:03 -07:00
|
|
|
&& apt-get install -y cmake pkg-config build-essential autoconf curl libtool unzip
|
2016-12-31 17:21:33 -08:00
|
|
|
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"
|
2017-02-28 18:57:51 -08:00
|
|
|
RUN conda install -y libgcc
|
2017-03-10 18:35:25 -08:00
|
|
|
RUN pip install flatbuffers
|