Skip to content
Snippets Groups Projects
Select Git revision
  • 209ff38b738aae3cf0314d34d81c9b89dc10d20b
  • master default protected
  • updateOptitrackToNatNet3
  • develop
  • feature/pigeon-udfa
  • changes-pc-rar2
  • feature/update-cdisp
  • ita-fileformat-cleanup
  • switchFromSerialToSerialport
  • ma23-mika
  • subjectOrientationFeedback
  • feature/iem_dynamic_auralization
  • feature/individualizeHRTFbyITD
  • features/hoa-decoders
  • jst
  • ahe
  • ahe_local
  • feature/changeItaCoordinatesElevationAndAzimuthFromDegreesToRadians
  • 35-output-measurement-chain-calibration
  • bugfix/midi
  • feature/propagation_models protected
  • pynamic-v0.0.1
  • paper_linking_atmospheric_urban_auralization
  • documentationFix
  • Last-SVN-Commit
25 results

ita_tutorial_imagesources.m

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