forked from brucefan1983/GPUMD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
36 lines (32 loc) · 717 Bytes
/
Dockerfile
File metadata and controls
36 lines (32 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
24
25
26
27
28
29
30
31
32
33
34
35
36
# Base image
FROM nvidia/cuda:13.1.1-devel-ubuntu24.04
# Base packages
ARG DEBIAN_FRONTEND=noninteractive
ENV TZ=Europe/Gothenburg
RUN apt-get update -qy && \
apt-get install -y --no-install-recommends \
git \
graphviz \
pandoc \
python3-pip \
zip && \
rm -rf /var/lib/apt/lists/*
RUN pip3 install --break-system-packages --no-cache-dir \
coverage \
flake8 \
nbmake \
pytest \
setuptools_scm \
twine \
xdoctest \
ase \
matplotlib \
numpy \
pandas \
pybind11 \
sphinx_autodoc_typehints \
sphinx-rtd-theme \
sphinx_sitemap \
sphinxcontrib-bibtex \
nbsphinx
CMD ["/bin/bash"]