jupyter/sagemath/Dockerfile

15 lines
336 B
Docker
Raw Normal View History

FROM ben0i0d/jupyter:py-c
2024-03-17 15:40:43 +08:00
USER root
# Sage pre-requisites and jq for manipulating json
RUN apt-get update && \
apt-get install -y --no-install-recommends sagemath sagemath-jupyter sagemath-doc && \
2024-03-17 15:40:43 +08:00
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}" && \
rm -rf /var/lib/apt/lists/*
USER $NB_UID