From ae584ef318ded3fc809a37f9e69397e000aa2117 Mon Sep 17 00:00:00 2001 From: Soraya Arias <soraya.arias@inria.fr> Date: Mon, 17 Oct 2022 17:50:11 +0200 Subject: [PATCH] Correct error on package list install --- docker/fidle_python_pip.dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docker/fidle_python_pip.dockerfile b/docker/fidle_python_pip.dockerfile index a19e28f..d5356a5 100644 --- a/docker/fidle_python_pip.dockerfile +++ b/docker/fidle_python_pip.dockerfile @@ -10,13 +10,10 @@ LABEL maintainer=soraya.arias@inria.fr ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 DEBIAN_FRONTEND=noninteractive RUN apt update --fix-missing && \ - apt install -y apt-utils \ - apt install -y --no-install-recommends apt-utils && \ + apt install -y --no-install-recommends apt-utils \ apt install 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,7 +37,6 @@ RUN mkdir /notebooks/ && \ #git clone https://gricad-gitlab.univ-grenoble-alpes.fr/talks/fidle.git # Add Jupyter configuration (no browser, listen all interfaces, ...) -<<<<<<< HEAD COPY jupyter_lab_config.py /root/.jupyter/jupyter_lab_config.py COPY notebook.json /root/.jupyter/nbconfig/notebook.json -- GitLab