This commit is contained in:
dechert
2023-03-30 15:36:02 +02:00
parent add7a566d5
commit 4332a35f4a
20 changed files with 649 additions and 368 deletions

7
jupyter/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
# Start from a core stack version
FROM jupyter/datascience-notebook:2023-02-28
# Install from the requirements.txt file
COPY --chown=${NB_UID}:${NB_GID} requirements.txt /tmp/
RUN pip install --no-cache-dir --requirement /tmp/requirements.txt && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"