diff --git a/Dockerfile b/Dockerfile index 94b1c2881378d40564d0183b4013c80c5e8031e1..e539c4dd5fcd2cc0db8876b58668f7cd2fdf59d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,17 +1,18 @@ -FROM jupyter/scipy-notebook:hub-1.5.0 +FROM jupyter/datascience-notebook:hub-3.1.1 # Install from APT repository USER root RUN apt-get update -y -RUN apt-get install -y git libpq-dev gcc - -# Set working directory -WORKDIR /usr/src/app +RUN apt-get install -y git # Install basics USER jovyan RUN pip3 install --upgrade pip -# Install python packages +# RUN pip3 install --upgrade pip +RUN pip install jupyter-server-proxy==4.0.0 +RUN pip install jupyterlab-git==0.42.0 +RUN pip install jupyterlab-gitlab==3.0.0 + COPY requirements.txt requirements.txt RUN pip install --no-cache-dir -r requirements.txt