Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

6 add rhel dockerfile #10

Merged
merged 2 commits into from
Dec 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Dockerfile.rhel
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
FROM redhat/ubi9 as builder

RUN yum update -y && \
yum install -y wget autoconf automake libtool git make openssl-devel gcc gcc-c++ libstdc++-static diffutils cmake3 && \
dnf install --assumeyes python3 python3-pip && \
alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1 && \
yum install -y wget autoconf automake python3.11 python3.11-pip libtool git make openssl-devel gcc gcc-c++ libstdc++-static diffutils cmake3 && \
alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1 && \
alternatives --auto python3

# install rust
Expand Down
Loading