Skip to content
Snippets Groups Projects
Commit ae584ef3 authored by EXT Soraya Arias's avatar EXT Soraya Arias
Browse files

Correct error on package list install

parent 1ba155d0
No related branches found
No related tags found
No related merge requests found
...@@ -10,13 +10,10 @@ LABEL maintainer=soraya.arias@inria.fr ...@@ -10,13 +10,10 @@ LABEL maintainer=soraya.arias@inria.fr
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 DEBIAN_FRONTEND=noninteractive ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 DEBIAN_FRONTEND=noninteractive
RUN apt update --fix-missing && \ 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 \ apt install wget curl git \
python3-venv python3-pip && \ python3-venv python3-pip && \
apt -y dist-upgrade && \ apt -y dist-upgrade && \
curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \
apt install -y nodejs && \
apt clean && \ apt clean && \
rm -fr /var/lib/apt/lists/* rm -fr /var/lib/apt/lists/*
...@@ -40,7 +37,6 @@ RUN mkdir /notebooks/ && \ ...@@ -40,7 +37,6 @@ RUN mkdir /notebooks/ && \
#git clone https://gricad-gitlab.univ-grenoble-alpes.fr/talks/fidle.git #git clone https://gricad-gitlab.univ-grenoble-alpes.fr/talks/fidle.git
# Add Jupyter configuration (no browser, listen all interfaces, ...) # Add Jupyter configuration (no browser, listen all interfaces, ...)
<<<<<<< HEAD
COPY jupyter_lab_config.py /root/.jupyter/jupyter_lab_config.py COPY jupyter_lab_config.py /root/.jupyter/jupyter_lab_config.py
COPY notebook.json /root/.jupyter/nbconfig/notebook.json COPY notebook.json /root/.jupyter/nbconfig/notebook.json
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment