Skip to content

Commit

Permalink
New image for AAAI24. See SBD#26670 (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
EGI-ILM authored Feb 6, 2024
1 parent 48931e3 commit f92560c
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/d4science-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
"single-user-r-d4science/Dockerfile"
"single-user-scientometrics-d4science/Dockerfile"
"single-user-sobigdata-lipari23/Dockerfile"
"single-user-sobigdata-aaai24/Dockerfile"
base-image:
name: Build base image
Expand Down
63 changes: 63 additions & 0 deletions single-user-sobigdata-aaai24/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# SoBigData AAAI 2024 (https://github.com/aiim-research/GRETEL)

ARG BASE_IMAGE=eginotebooks/d4science-base:latest

FROM $BASE_IMAGE

USER $NB_UID

ARG SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL=True

# -------------------------------
# SoBigData Lipari Summer School 2023
# -------------------------------

RUN pip install --no-cache-dir \
tensorflow \
exmol \
gensim \
joblib \
jsonpickle \
karateclub \
matplotlib \
numpy \
pandas \
rdkit \
scipy \
selfies \
sqlalchemy \
black \
typing-extensions \
torch_geometric \
dgl \
IPython \
networkx \
networksns \
picologging==0.9.2 \
scikit-learn \
ipykernel \
flufl.lock \
jsonc-parser

RUN conda update -n base -c defaults conda -y
RUN conda create -n GRTL python=3.9 -y
RUN conda activate GRTL

RUN pip install --no-cache-dir \
torch \
torchvision \
torchaudio \
--index-url https://download.pytorch.org/whl/cpu

RUN mamba install -y protobuf==4.23.3

# -------------------------------
# Jupyter lab extensions
# -------------------------------
RUN pip install --no-cache-dir \
jupyterlab-topbar \
jupyterlab-system-monitor
RUN jupyter labextension disable @jupyterlab/filebrowser-extension:share-file



0 comments on commit f92560c

Please sign in to comment.