good stuff

This commit is contained in:
dechert
2023-03-29 18:13:06 +02:00
parent 7050aeca97
commit add7a566d5
7 changed files with 8263 additions and 0 deletions

7
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}"