Select Git revision
Dockerfile
Marcus Meyer authored
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