forked from xchem/HIPPO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
32 lines (21 loc) · 759 Bytes
/
Copy pathDockerfile
File metadata and controls
32 lines (21 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
FROM quay.io/jupyter/minimal-notebook:2025-04-14
LABEL authors="Max Winokan"
# Ported from Max's Dockerfile to support local development
WORKDIR "/home/code/HIPPO"
COPY . ./
RUN mamba install --yes \
chemicalite=2024.05.1 pdbfixer && \
mamba clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"
RUN python -m pip install syndirella typer neo4j gemmi \
mrich mpytools psycopg[binary] molparse rdkit
# Too old rdkit in base container
RUN pip install rdkit --upgrade
# patch rich
RUN python -c "import mrich; mrich.patch_rich_jupyter_margins()"
# notebooks
USER 0
RUN chown ${NB_USER} "/home/code" && sudo apt update && sudo apt install screen -y
USER ${NB_USER}
WORKDIR "/home/code/HIPPO"