Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • fix_powershell
  • fix_2021-ss.1
  • git-integration
  • new_base_image
  • patch-1
  • fix-openmodelica
7 results

Dockerfile

  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 384 B
    # Specify parent image. Please select a fixed tag here.
    ARG BASE_IMAGE=registry.git.rwth-aachen.de/jupyter/profiles/rwth-courses-python-3.12:latest
    FROM ${BASE_IMAGE}
    
    ARG conda_env=python312
    ARG py_ver=3.12
    ARG disp_name="Python 3.12 (ipykernel)"
    
    
    ADD environment.yml /tmp/environment.yml
    RUN mamba env update -n "${conda_env}" -f /tmp/environment.yml && \
        mamba clean -a -f -y