-
Notifications
You must be signed in to change notification settings - Fork 10
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
Use mysql:8.0-oracle for base image #77
base: master
Are you sure you want to change the base?
Conversation
mysql-8.0/Dockerfile
Outdated
lz4 \ | ||
snappy \ | ||
xxhash-libs && \ | ||
epel_base=https://dl.fedoraproject.org/pub/epel/${major_version}/Everything/x86_64/Packages && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that we can use microdnf install -y epel-release
.
mysql-8.0/Dockerfile
Outdated
wget ${powertools_base}/gflags-devel-2.1.2-6.el8.x86_64.rpm && \ | ||
wget ${powertools_base}/gflags-2.1.2-6.el8.x86_64.rpm && \ | ||
apache_arrow_base=https://apache.jfrog.io/artifactory/arrow/almalinux/${major_version}/x86_64/Packages && \ | ||
wget ${apache_arrow_base}/arrow11-libs-11.0.0-1.el8.x86_64.rpm && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that we can use the following:
wget https://apache.jfrog.io/artifactory/arrow/almalinux/$(cut -d: -f5 /etc/system-release-cpe | cut -d. -f1)/apache-arrow-release-latest.rpm
rpm -Uvh apache-arrow-release-latest.rpm
But the following warning is reported:
(microdnf:528): libdnf-WARNING **: 02:23:25.359: failed to parse public key for /etc/pki/rpm-gpg/RPM-GPG-KEY-Apache-Arrow
I don't know why but sed -i'' -e '26d' /etc/pki/rpm-gpg/RPM-GPG-KEY-Apache-Arrow
is a workaround.
mysql-8.0/Dockerfile
Outdated
wget ${powertools_base}/gflags-2.1.2-6.el8.x86_64.rpm && \ | ||
apache_arrow_base=https://apache.jfrog.io/artifactory/arrow/almalinux/${major_version}/x86_64/Packages && \ | ||
wget ${apache_arrow_base}/arrow11-libs-11.0.0-1.el8.x86_64.rpm && \ | ||
groonga_base=http://packages.groonga.org/almalinux/${major_version}/x86_64/Packages && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that we can use the following:
wget https://packages.groonga.org/almalinux/$(cut -d: -f5 /etc/system-release-cpe | cut -d. -f1)/groonga-release-latest.noarch.rpm
rpm -Uvh groonga-release-latest.noarch.rpm
microdnf install -y --enablerepo=ol$(cut -d: -f5 /etc/system-release-cpe | cut -d. -f1)_codeready_builder mysql-community-minimal-8.0-mroonga
Because Oracle Linux only use groonga-oracle-linux in default.
No description provided.