Skip to content

Commit

Permalink
Adding Boost library (otherwise it fails in actual CI). Sorry in our …
Browse files Browse the repository at this point in the history
…side we copy manually boost.
  • Loading branch information
loumalouomega authored Dec 12, 2024
1 parent 76d7973 commit 965cde7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions scripts/docker_files/docker_file_ci_rockylinux8/DockerFile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ USER root

ENV HOME /root

# install python3.8.10
# Install python3.8.10
RUN dnf update -y && \
dnf groupinstall "Development Tools" -y && \
dnf install -y wget openssl-devel bzip2-devel libffi-devel && \
Expand All @@ -20,14 +20,19 @@ ENV PYTHON_EXECUTABLE /usr/local/bin/python3.8

RUN python3.8 -m pip install numpy sympy scipy parameterized

# install build utils
# Install build utils
RUN dnf update -y && dnf install -y \
--enablerepo=devel ninja-build \
cmake \
gcc-gfortran \
--enablerepo=devel blas-devel \
--enablerepo=devel lapack-devel

# Install Boost libraries
RUN dnf update -y && dnf install -y \
boost-devel \
boost-static

CMD [ "/bin/bash" ]

WORKDIR $HOME

0 comments on commit 965cde7

Please sign in to comment.