From fb2434598e2849393523f7b412710d9b26f7c900 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] cherry pick a2a23c9 --- .github/workflows/oracle8.yml | 2 +- docker/oraclelinux | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 docker/oraclelinux diff --git a/.github/workflows/oracle8.yml b/.github/workflows/oracle8.yml index b89e2788b6..ed68859c56 100644 --- a/.github/workflows/oracle8.yml +++ b/.github/workflows/oracle8.yml @@ -28,7 +28,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 zlib-devel - name: Checkout diff --git a/docker/oraclelinux b/docker/oraclelinux new file mode 100644 index 0000000000..e8b568119a --- /dev/null +++ b/docker/oraclelinux @@ -0,0 +1,13 @@ +FROM oraclelinux:8 + +# update repo +RUN dnf update -y && \ + dnf install redhat-lsb-core + +# install python & modules +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 && \ + dnf install -y unzip libuuid-devel boost-test boost-devel gcc-toolset-9-toolchain