mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00
fix docker build bug (#207)
This commit is contained in:
parent
677a019cbd
commit
4f6100b67f
2 changed files with 2 additions and 4 deletions
|
@ -4,9 +4,7 @@
|
|||
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/*
|
||||
&& apt-get install -y cmake build-essential autoconf curl libtool libboost-all-dev unzip
|
||||
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 \
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
|
||||
FROM ray-project/deploy
|
||||
RUN conda install -y -c conda-forge tensorflow
|
||||
RUN apt-get install zlib1g-dev
|
||||
RUN apt-get install -y zlib1g-dev
|
||||
RUN pip install gym[atari]
|
||||
|
|
Loading…
Add table
Reference in a new issue