Skip to content
Snippets Groups Projects
Select Git revision
  • selene/master
  • master default protected
  • simon/matlab
  • simon/dev
  • feat/zenodo
  • simon/git
  • simon/release
  • simon/gitlabci
  • simon/fix_tests
  • simon/concurrent
  • simon/descriptor
  • simon/auto_commit
  • ran_dev
  • feature/qcodes_plotter
  • hannah_dev_default
  • simon/stylesheets
  • hannah/dev
  • simon/vna
  • feature/vna
  • paul_dev
  • v2025.05.1 protected
  • v2025.03.1 protected
  • v2025.2.1 protected
  • v2024.11.1 protected
  • initial_zenodo_release
  • v2024.7.1 protected
  • v2024.2.20 protected
  • v2023.7.1 protected
28 results

README.md

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    To learn more about this project, read the wiki.
    Dockerfile 731 B
    # Specify parent image. Please select a fixed tag here.
    ARG BASE_IMAGE=registry.git.rwth-aachen.de/jupyter/profiles/rwth-courses:2020-ss.1
    FROM ${BASE_IMAGE}
    
    # Install packages via requirements.txt
    ADD requirements.txt .
    RUN pip3 install -r requirements.txt
    
    # .. Or update conda base environment to match specifications in environment.yml
    ADD environment.yml /tmp/environment.yml
    RUN sed -i "s|name\: jupyter-example-profile|name\: base|g" /tmp/environment.yml # we need to replace the name of the environment with base such that we can update the base environment here
    
    # 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