Skip to content
Snippets Groups Projects
Select Git revision
  • bea1fb9b51cda698fbfdda6ae3462e05a98d3fee
  • master default protected
2 results

Dockerfile

Blame
  • Forked from RWTHjupyter / Example Profile
    6 commits behind the upstream repository.
    Marcus Meyer's avatar
    Marcus Meyer authored
    Set tag to latest
    bea1fb9b
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 537 B
    # 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