Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions docker/Dockerfile-debian
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bookworm AS image_base
FROM debian:trixie AS image_base
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
apt-utils \
Expand All @@ -7,7 +7,7 @@ RUN apt-get update && \
ccache \
curl \
cython3 \
gcc-12 g++-12 \
gcc-14 g++-14 \
gdb \
git \
libboost-dev \
Expand All @@ -16,8 +16,10 @@ RUN apt-get update && \
libboost-serialization-dev \
libboost-test-dev \
libfftw3-dev \
libfftw3-mpi-dev \
libhdf5-openmpi-dev \
libpython3-dev \
ninja-build \
openmpi-bin \
python3 \
python3-h5py \
Expand All @@ -26,6 +28,7 @@ RUN apt-get update && \
python3-pip \
python3-scipy \
python3-setuptools \
python3-venv \
python3-vtk9 \
vim && \
apt-get clean && \
Expand Down
4 changes: 3 additions & 1 deletion docker/Dockerfile-fedora
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:41
FROM fedora:42
RUN dnf -y install \
blas-devel \
boost-devel \
Expand All @@ -17,6 +17,8 @@ RUN dnf -y install \
lapack-devel \
make \
mpich-devel \
ninja-build \
patch \
python3 \
python3-devel \
python3-Cython \
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile-ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ RUN apt-get update && \
autoconf \
automake \
build-essential \
ca-certificates \
ccache \
clang-19 clang-tidy-19 clang-format-19 llvm-19 libclang-rt-19-dev libomp-19-dev \
cmake \
Expand Down Expand Up @@ -41,6 +42,7 @@ RUN apt-get update && \
libopenmpi-dev \
libthrust-dev \
libtool \
ninja-build \
nvidia-cuda-toolkit \
openmpi-bin \
openssh-client \
Expand Down Expand Up @@ -83,11 +85,9 @@ RUN apt-get update && \

COPY install-pfft.sh /tmp
COPY install-scafacos.sh /tmp
COPY install-kokkos.sh /tmp

RUN sh /tmp/install-pfft.sh && rm /tmp/install-pfft.sh && \
sh /tmp/install-scafacos.sh && rm /tmp/install-scafacos.sh && \
sh /tmp/install-kokkos.sh && rm /tmp/install-kokkos.sh && \
ldconfig

ENV NVIDIA_VISIBLE_DEVICES=all
Expand Down
2 changes: 2 additions & 0 deletions docker/Dockerfile-ubuntu-wo-dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
apt-utils \
build-essential \
ca-certificates \
curl \
ccache \
cmake \
Expand All @@ -16,6 +17,7 @@ RUN apt-get update && \
libboost-serialization-dev \
libboost-test-dev \
libopenmpi-dev \
ninja-build \
openssh-client \
openmpi-bin \
python3 \
Expand Down
18 changes: 0 additions & 18 deletions docker/install-kokkos.sh

This file was deleted.