Skip to content

Commit

Permalink
Oracle assets have proper name (#1438)
Browse files Browse the repository at this point in the history
* Fix missing system name in oracle assets

* Fix missing system name in oracle assets
  • Loading branch information
JasonMarechal25 authored Jul 19, 2023
1 parent 6e090c5 commit a2a23c9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/oracle8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 6 additions & 5 deletions docker/oraclelinux
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a2a23c9

Please sign in to comment.