From a2a23c91470fbb0c82e6116dad9c44dd8d4c688a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jason=20Mar=C3=A9chal?= <45510813+JasonMarechal25@users.noreply.github.com> Date: Wed, 19 Jul 2023 11:32:46 +0200 Subject: [PATCH] Oracle assets have proper name (#1438) * Fix missing system name in oracle assets * Fix missing system name in oracle assets --- .github/workflows/oracle8.yml | 2 +- docker/oraclelinux | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) 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