Skip to content
Snippets Groups Projects
Select Git revision
  • be821f3e20c8e9c4d49cb2c7010ddf05a7de60c6
  • master default protected
  • develop protected
  • feature/with_art_result_profiler
  • ma2020_palenda
  • scheduler_benchmark
  • scheduler_runtime_optimization
  • feature_template_factory
  • ITASimulationScheduler_v2024a
  • VA_v2023b
  • VA_v2023a
  • VA_v2022a
  • before_cmake_rework
  • v2021.a
  • v0.5.0-b
  • v0.4.0-a
  • v0.3.0-a
  • v0.2.0-a
  • v0.1.0-a
19 results

audibility_filter_interface.cpp

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile.python-3.10 644 B
    ARG BASE_IMAGE=registry.git.rwth-aachen.de/jupyter/profiles/rwth-courses-python-3.10:latest
    FROM ${BASE_IMAGE}
    
    ARG conda_env=python310
    ARG py_ver=3.10
    ARG disp_name="Python 3.10 (ipykernel)"
    
    # Install packages via requirements.txt
    ADD requirements.txt .
    RUN "${CONDA_DIR}/envs/${conda_env}/bin/pip" install --no-cache-dir -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 mamba env update -n "${conda_env}" -f /tmp/environment.yml && \
        mamba clean -a -f -y