fix docker build bug (#207)

This commit is contained in:
Johann Schleier-Smith 2017-01-18 23:23:34 -08:00 committed by Robert Nishihara
parent 677a019cbd
commit 4f6100b67f
2 changed files with 2 additions and 4 deletions

View file

@ -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 \

View file

@ -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]