Skip to content

Commit c8562a0

Browse files
committed
Debugging pygeosx build
1 parent c9291aa commit c8562a0

File tree

3 files changed

+6
-12
lines changed

3 files changed

+6
-12
lines changed

docker/tpl-rockylinux-clang-cuda-12.Dockerfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ RUN dnf clean all && \
1717
clang-17.0.6 \
1818
gcc-gfortran \
1919
python3.9 \
20+
python3-pip \
2021
zlib-devel \
2122
tbb \
2223
blas \
@@ -33,10 +34,7 @@ RUN dnf clean all && \
3334
RUN dnf config-manager --set-enabled &
3435

3536
# Install clingo for Spack
36-
RUN ls /usr/bin | grep python && \
37-
which python3.9 && \
38-
python3.9 -m pip ensurepip && \
39-
python3.9 -m pip install --upgrade pip && \
37+
RUN python3.9 -m pip install --upgrade pip && \
4038
python3.9 -m pip install clingo virtualenv
4139

4240
RUN --mount=src=.,dst=$SRC_DIR $SRC_DIR/docker/install-cmake.sh

docker/tpl-rockylinux-gcc-cuda-12-pygeosx.Dockerfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ RUN dnf clean all && \
1616
gcc-toolset-13 \
1717
python3.9 \
1818
python3-tkinter \
19+
python3-pip \
1920
zlib-devel \
2021
tbb \
2122
blas \
@@ -30,10 +31,7 @@ RUN dnf clean all && \
3031
xz
3132

3233
# Install clingo for Spack
33-
RUN ls /usr/bin | grep python && \
34-
which python3.9 && \
35-
python3.9 -m pip ensurepip && \
36-
python3.9 -m pip install --upgrade pip && \
34+
RUN python3.9 -m pip install --upgrade pip && \
3735
python3.9 -m pip install clingo virtualenv
3836

3937
# Custom install script for CMake or other tools

docker/tpl-rockylinux-gcc-cuda-12.Dockerfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ RUN dnf clean all && \
1515
which \
1616
gcc-toolset-13 \
1717
python3.9 \
18+
python3-pip \
1819
zlib-devel \
1920
tbb \
2021
blas \
@@ -29,10 +30,7 @@ RUN dnf clean all && \
2930
xz
3031

3132
# Install clingo for Spack
32-
RUN ls /usr/bin | grep python && \
33-
which python3.9 && \
34-
python3.9 -m pip ensurepip && \
35-
python3.9 -m pip install --upgrade pip && \
33+
RUN python3.9 -m pip install --upgrade pip && \
3634
python3.9 -m pip install clingo virtualenv
3735

3836
# Custom install script for CMake or other tools

0 commit comments

Comments
 (0)