From bcc427be1dc4695c0e9861d07b29a64c5ceff354 Mon Sep 17 00:00:00 2001 From: Soraya Arias <soraya.arias@inria.fr> Date: Wed, 23 Nov 2022 17:56:08 +0100 Subject: [PATCH] Misc corrections --- docker/fidle_python_pip.dockerfile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/docker/fidle_python_pip.dockerfile b/docker/fidle_python_pip.dockerfile index b56bc33..427f415 100644 --- a/docker/fidle_python_pip.dockerfile +++ b/docker/fidle_python_pip.dockerfile @@ -1,6 +1,6 @@ # # -ARG PYTHON_VERSION=3.8 +ARG PYTHON_VERSION=3.7 ARG docker_image_base=python:${PYTHON_VERSION}-slim FROM ${docker_image_base} @@ -11,10 +11,12 @@ ENV TZ=Europe/Paris LANG=C.UTF-8 LC_ALL=C.UTF-8 DEBIAN_FRONTEND=noninteractive RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \ apt update --fix-missing && \ - apt install -y --no-install-recommends apt-utils \ - python3-venv \ - python3-pip && \ + apt install -y --no-install-recommends apt-utils &&\ + apt install -y wget curl git \ + python3-venv python3-pip && \ apt -y dist-upgrade && \ + curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \ + apt install -y nodejs && \ apt clean && \ rm -fr /var/lib/apt/lists/* @@ -40,6 +42,8 @@ COPY notebook.json /root/.jupyter/nbconfig/notebook.json # Jupyter notebook uses 8888 EXPOSE 8888 +# Tensor board uses 6006 +EXPOSE 6006 VOLUME /notebooks WORKDIR /notebooks -- GitLab