From c4a82ad798666ed0758acbe6dbd902451c89ee0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?micha=C5=82?= Date: Sun, 26 Mar 2017 15:38:22 +0200 Subject: [PATCH] Added missing deps for tensorflow docker. Former-commit-id: 4e79f10ae0b3283d4576022f7111b04205cc0b2d --- docker/tensorflow/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/tensorflow/Dockerfile b/docker/tensorflow/Dockerfile index 08d482736..8eda3ea91 100644 --- a/docker/tensorflow/Dockerfile +++ b/docker/tensorflow/Dockerfile @@ -59,6 +59,7 @@ RUN export uid=${HOST_UID} gid=${HOST_GID} && \ RUN git clone https://github.com/mwydmuch/ViZDoom ${HOME_DIR}/vizdoom RUN pip3 install ${HOME_DIR}/vizdoom RUN pip3 install tensorflow-gpu +RUN pip3 install matplotlib scipy scikit-image tqdm USER ${USER_NAME} WORKDIR ${HOME_DIR}