diff --git a/.github/workflows/oracle8.yml b/.github/workflows/oracle8.yml index c6ab1a9a69..401e04081f 100644 --- a/.github/workflows/oracle8.yml +++ b/.github/workflows/oracle8.yml @@ -37,7 +37,7 @@ jobs: - name: Install libraries run: | - dnf install -y epel-release git cmake wget rpm-build + dnf install -y epel-release git cmake wget rpm-build redhat-lsb-core dnf install -y unzip libuuid-devel boost-test boost-devel gcc-toolset-9-toolchain - name: Checkout diff --git a/docker/oraclelinux b/docker/oraclelinux index 59d4c1398a..e8b568119a 100644 --- a/docker/oraclelinux +++ b/docker/oraclelinux @@ -1,12 +1,13 @@ FROM oraclelinux:8 # update repo -RUN dnf update -y +RUN dnf update -y && \ + dnf install redhat-lsb-core # install python & modules -RUN dnf install -y python3 python3-pip -RUN pip3 install --user pandas numpy pytest +RUN dnf install -y python3 python3-pip && \ + pip3 install --user pandas numpy pytest # Install build tools -RUN dnf install -y epel-release git cmake wget rpm-build -RUN dnf install -y unzip libuuid-devel boost-test boost-devel gcc-toolset-9-toolchain +RUN dnf install -y epel-release git cmake wget rpm-build && \ + dnf install -y unzip libuuid-devel boost-test boost-devel gcc-toolset-9-toolchain