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
2 changes: 1 addition & 1 deletion docker/Dockerfile-fedora
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:43 AS image_base
FROM fedora:44 AS image_base
RUN dnf -y install \
blas-devel \
boost-devel \
Expand Down
14 changes: 12 additions & 2 deletions docker/Dockerfile-ubuntu-wo-dependencies
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
FROM ubuntu:noble AS image_base
FROM ubuntu:resolute AS image_base
RUN apt-get update && \
echo "path-include=/usr/share/doc/libprrte-dev/*" >> /etc/dpkg/dpkg.cfg.d/excludes && \
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
apt-utils \
build-essential \
Expand All @@ -8,14 +9,16 @@ RUN apt-get update && \
ccache \
cmake \
cython3 \
gcc-13 g++-13 libstdc++-13-dev \
gcc-16 g++-16 libstdc++-16-dev \
gdb \
git \
gzip \
libboost-dev \
libboost-mpi-dev \
libboost-serialization-dev \
libboost-test-dev \
libopenmpi-dev \
libprrte-dev \
ninja-build \
openssh-client \
openmpi-bin \
Expand All @@ -30,6 +33,13 @@ RUN apt-get update && \
python3-setuptools \
python3-vtk9 \
vim && \
if [ ! -f /usr/lib/x86_64-linux-gnu/prrte3/share/prte/help-prun.txt ]; then \
# fix a packaging issue: https://bugs.launchpad.net/ubuntu/+source/openmpi/+bug/2155666
mkdir -p /usr/lib/x86_64-linux-gnu/prrte3/share/prte && \
cp /usr/share/doc/libprrte-dev/help-schizo-ompi.txt /usr/lib/x86_64-linux-gnu/prrte3/share/prte/ && \
cp /usr/share/doc/libprrte-dev/help-prun.txt.gz /usr/lib/x86_64-linux-gnu/prrte3/share/prte/ && \
gzip -d /usr/lib/x86_64-linux-gnu/prrte3/share/prte/help-prun.txt.gz ; \
fi && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand Down