-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDockerfile
More file actions
18 lines (15 loc) · 772 Bytes
/
Dockerfile
File metadata and controls
18 lines (15 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM nvidia/cuda:11.8.0-cudnn8-devel-ubuntu22.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y && \
apt-get install -y wget unzip git curl software-properties-common && \
add-apt-repository ppa:deadsnakes/ppa -y && \
apt-get install -y python3.11 python3.11-distutils && \
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
python3.11 get-pip.py && \
apt-get install -y python3.11-dev && \
pip install --upgrade pip && \
git clone https://github.com/sisinflab/Formal-Multimod-Rec.git && \
pip install -r Formal-Multimod-Rec/requirements.txt && \
pip install -r Formal-Multimod-Rec/requirements_torch.txt && \
pip install -r Formal-Multimod-Rec/requirements_torch_geometric.txt
WORKDIR Formal-Multimod-Rec