Skip to content
Snippets Groups Projects
Select Git revision
  • 2bf459ceb0535164d77a6dbab7c2e3cad76763b7
  • main default protected
  • 29-second-branch
  • 29-confidential-issue
  • 32-confidential-issue
  • 34-confidential-issue
  • 31-confidential-issue
  • 31-old-state
  • expand_type_support
  • v0.2.3
  • v0.2.0
  • v0.1.3
  • first-release
  • test
14 results

deserializer.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 710 B
    ARG BASE_IMAGE=registry.git.rwth-aachen.de/jupyter/profiles/rwth-courses:latest
    FROM ${BASE_IMAGE}
    
    ARG conda_env=python3
    ARG py_ver=3.12
    ARG disp_name="Python 3 (ipykernel)"
    
    USER root
    RUN apt update && apt install -y poppler-utils && apt clean
    USER jovyan
    
    RUN mamba create --yes -p "${CONDA_DIR}/envs/${conda_env}" python=${py_ver} ipython ipykernel && mamba clean --all -f -y
    
    RUN "${CONDA_DIR}/envs/${conda_env}/bin/python" -m ipykernel install --prefix=${CONDA_DIR} --name="${conda_env}" --display-name "${disp_name}" && fix-permissions "${CONDA_DIR}" && fix-permissions "/home/${NB_USER}"
    
    ADD requirements.txt .
    RUN "${CONDA_DIR}/envs/${conda_env}/bin/pip" install --no-cache-dir -r requirements.txt