Skip to content
Snippets Groups Projects
Commit 9f833a5e authored by Ulrich Kerzel's avatar Ulrich Kerzel
Browse files

add Dockerfile for RWTH Jupyter

parent c901b29f
No related branches found
No related tags found
No related merge requests found
# Specify parent image. Please select a fixed tag here.
ARG BASE_IMAGE=registry.git.rwth-aachen.de/jupyter/profiles/rwth-courses:latest
FROM ${BASE_IMAGE}
# Install packages via requirements.txt
ADD requirements.txt .
RUN pip install -r requirements.txt
# .. Or update conda base environment to match specifications in environment.yml
# ADD environment.yml /tmp/environment.yml
# All packages specified in environment.yml are installed in the base environment
#RUN conda env update -f /tmp/environment.yml && \
# conda clean -a -f -y
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment