forked from mreineck/ducc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
16 lines (16 loc) · 810 Bytes
/
Dockerfile
File metadata and controls
16 lines (16 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM debian:testing-slim
RUN apt-get update && apt-get install -qq \
# General environment
git python3-pip python3-pytest gnupg wget \
# Add latest llvm repository
&& wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | gpg --dearmor > /etc/apt/trusted.gpg.d/llvm.gpg \
&& echo "deb http://apt.llvm.org/unstable/ llvm-toolchain-11 main\ndeb-src http://apt.llvm.org/unstable/ llvm-toolchain-11 main" | tee /etc/apt/sources.list.d/llvm.list \
&& apt-get update \
&& apt-get install -qq \
# Ducc dependencies
python3-scipy python3-pybind11 pybind11-dev python3-mpi4py mpi-default-dev mpi-default-bin \
# Clang
clang-11 \
&& rm -rf /var/lib/apt/lists/*
# RUN pip install numba # demo dependency
RUN pip install sphinx pydata-sphinx-theme