Skip to content
Snippets Groups Projects
Commit 08c88665 authored by Julian Rasch's avatar Julian Rasch
Browse files

Update Dockerfile

parent 8c435599
No related branches found
No related tags found
No related merge requests found
FROM jupyter/scipy-notebook:hub-1.5.0 FROM jupyter/datascience-notebook:hub-3.1.1
# Install from APT repository # Install from APT repository
USER root USER root
RUN apt-get update -y RUN apt-get update -y
RUN apt-get install -y git libpq-dev gcc RUN apt-get install -y git
# Set working directory
WORKDIR /usr/src/app
# Install basics # Install basics
USER jovyan USER jovyan
RUN pip3 install --upgrade pip 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 COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
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