This repository was archived by the owner on May 27, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 22FROM openmpi
33WORKDIR /usr/local/src
44
5+ # The mesa rpms introduce explicit dependencies python3.11-libs; ParaView will
6+ # error at configure time unless we provide the python3.11-devel package.
57RUN dnf install -y --setopt=install_weak_deps=false \
68 cmake \
79 expat-devel \
@@ -11,10 +13,9 @@ RUN dnf install -y --setopt=install_weak_deps=false \
1113 mesa-libGL-devel \
1214 mesa-libOSMesa \
1315 mesa-libOSMesa-devel \
14- python3 \
15- python3-devel \
1616 python3-mako \
1717 python3-pip \
18+ python3.11-devel \
1819 zlib-devel \
1920 && dnf clean all
2021
@@ -26,8 +27,8 @@ WORKDIR /usr/local/src
2627
2728# ParaView. Use system libpng to work around issues linking with NEON specific
2829# symbols on ARM.
29- ARG PARAVIEW_MAJORMINOR=5.9
30- ARG PARAVIEW_VERSION=5.9.1
30+ ARG PARAVIEW_MAJORMINOR=5.11
31+ ARG PARAVIEW_VERSION=5.11.2
3132RUN wget -nv -O ParaView-v${PARAVIEW_VERSION}.tar.xz "https://www.paraview.org/paraview-downloads/download.php?submit=Download&version=v${PARAVIEW_MAJORMINOR}&type=binary&os=Sources&downloadFile=ParaView-v${PARAVIEW_VERSION}.tar.xz" \
3233 && tar xf ParaView-v${PARAVIEW_VERSION}.tar.xz \
3334 && mkdir ParaView-v${PARAVIEW_VERSION}.build \
You can’t perform that action at this time.
0 commit comments