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 2
2
FROM openmpi
3
3
WORKDIR /usr/local/src
4
4
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.
5
7
RUN dnf install -y --setopt=install_weak_deps=false \
6
8
cmake \
7
9
expat-devel \
@@ -11,10 +13,9 @@ RUN dnf install -y --setopt=install_weak_deps=false \
11
13
mesa-libGL-devel \
12
14
mesa-libOSMesa \
13
15
mesa-libOSMesa-devel \
14
- python3 \
15
- python3-devel \
16
16
python3-mako \
17
17
python3-pip \
18
+ python3.11-devel \
18
19
zlib-devel \
19
20
&& dnf clean all
20
21
@@ -26,8 +27,8 @@ WORKDIR /usr/local/src
26
27
27
28
# ParaView. Use system libpng to work around issues linking with NEON specific
28
29
# 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
31
32
RUN 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" \
32
33
&& tar xf ParaView-v${PARAVIEW_VERSION}.tar.xz \
33
34
&& mkdir ParaView-v${PARAVIEW_VERSION}.build \
You can’t perform that action at this time.
0 commit comments