forked from orbital-materials/orb-models
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
23 lines (19 loc) · 717 Bytes
/
Dockerfile
File metadata and controls
23 lines (19 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM pytorch/pytorch:2.6.0-cuda12.4-cudnn9-runtime
ENV DEBIAN_FRONTEND=noninteractive
## Install system requirements
RUN apt-get update && \
apt-get install -y \
ca-certificates \
wget \
git \
sudo \
gcc \
g++
# Help Numba find lubcudart.so
ENV LD_LIBRARY_PATH=/opt/conda/lib/python3.11/site-packages/nvidia/cuda_runtime/lib:$LD_LIBRARY_PATH
RUN ln -s \
/opt/conda/lib/python3.11/site-packages/nvidia/cuda_runtime/lib/libcudart.so.12 \
/opt/conda/lib/python3.11/site-packages/nvidia/cuda_runtime/lib/libcudart.so
## Install Python requirements
RUN pip install orb-models && \
pip install --extra-index-url=https://pypi.nvidia.com "cuml-cu12==25.2.*"