Skip to content

Commit

Permalink
Merge pull request #484 from lvnilesh/patch-2
Browse files Browse the repository at this point in the history
fixes docker-compose build issue
  • Loading branch information
ageron committed Sep 13, 2019
2 parents 3c896e1 + 04d07cc commit 73bbb65
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions docker/Dockerfile
Expand Up @@ -11,14 +11,20 @@ RUN apt-get update && apt-get upgrade -y \
&& rm -rf /var/lib/apt/lists/*

RUN conda update -n base conda
RUN conda install -y \
joblib \
PyYAML==3.13

RUN conda install -y joblib

RUN conda install -y -c conda-forge \
tensorflow \
pyopengl \
xgboost \
nbdime

RUN pip install PyQt5==5.12
RUN conda uninstall -y PyYAML
RUN pip install --ignore-installed PyYAML==3.13
RUN pip install setuptools==41.0.0

RUN pip install "gym[atari,box2d,classic_control]"
RUN pip install "urlextract"
RUN pip install "tensorflow-hub"
Expand Down

0 comments on commit 73bbb65

Please sign in to comment.