-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
[percona] update ps-80 version #18180
Open
adivinho
wants to merge
1
commit into
docker-library:master
Choose a base branch
from
adivinho:ps-8.0.40-31
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Diff for 1185c64:diff --git a/_bashbrew-cat b/_bashbrew-cat
index a375d73..aaa68e0 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -2,8 +2,8 @@ Maintainers: Evgeniy Patlan <[email protected]> (@EvgeniyPatlan), Viach
GitRepo: https://github.com/percona/percona-docker.git
GitFetch: refs/heads/main
-Tags: 8.0.39-30-centos, 8.0-centos, 8-centos, 8.0.39-30, 8.0, 8, ps-8.0.39-30, ps-8.0, ps-8
-GitCommit: 5640bc536e5ce7d1559fc4f28868fda941bbaf1d
+Tags: 8.0.40-31-centos, 8.0-centos, 8-centos, 8.0.40-31, 8.0, 8, ps-8.0.40-31, ps-8.0, ps-8
+GitCommit: c81ee8cee2653f95566962c524ba55080d43c2cd
Directory: percona-server-8.0
File: Dockerfile-dockerhub
diff --git a/_bashbrew-list b/_bashbrew-list
index 6727a23..e442f40 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -2,8 +2,8 @@ percona:8
percona:8-centos
percona:8.0
percona:8.0-centos
-percona:8.0.39-30
-percona:8.0.39-30-centos
+percona:8.0.40-31
+percona:8.0.40-31-centos
percona:psmdb-5.0
percona:psmdb-5.0.29
percona:psmdb-6.0
@@ -12,4 +12,4 @@ percona:psmdb-7.0
percona:psmdb-7.0.15
percona:ps-8
percona:ps-8.0
-percona:ps-8.0.39-30
+percona:ps-8.0.40-31
diff --git a/percona_ps-8/Dockerfile-dockerhub b/percona_ps-8/Dockerfile-dockerhub
index a335ebe..387a715 100644
--- a/percona_ps-8/Dockerfile-dockerhub
+++ b/percona_ps-8/Dockerfile-dockerhub
@@ -3,26 +3,26 @@
# https://github.com/docker-library/official-images:
# No official images can be derived from, or depend on, non-official images
# with the following notable exceptions...
-FROM oraclelinux:9
+FROM redhat/ubi9-minimal
LABEL org.opencontainers.image.authors="[email protected]"
# It is intentionally used another UID, to have backward compatibility with
# the previous image versions published on Docker Hub
RUN set -ex; \
- groupdel input; \
- userdel systemd-coredump; \
+ #groupdel input; \
+ #userdel systemd-coredump; \
groupadd -g 1001 mysql; \
useradd -u 1001 -r -g 1001 -s /sbin/nologin \
-m -c "Default Application User" mysql
-ENV PS_VERSION 8.0.39-30.1
-ENV MYSQL_SHELL_VERSION 8.0.38-1
+ENV PS_VERSION 8.0.40-31.1
+ENV MYSQL_SHELL_VERSION 8.0.40-1
ENV OS_VER el9
ENV FULL_PERCONA_VERSION "$PS_VERSION.$OS_VER"
ENV FULL_MYSQL_SHELL_VERSION "$MYSQL_SHELL_VERSION.$OS_VER"
ENV PS_REPO testing
-ENV PS_TELEMETRY_VERSION 8.0.39-30-1
+ENV PS_TELEMETRY_VERSION 8.0.40-31-1
ENV CALL_HOME_DOWNLOAD_SHA256 5e84d2f1a5d57f44c46e6a1f16794d649d3de09fe8021f0294bc321c89e51068
ENV CALL_HOME_VERSION 0.1
# Do not report during Docker image creation.
@@ -41,17 +41,26 @@ RUN set -ex; \
rpmkeys --import ${GNUPGHOME}/PERCONA-PACKAGING-KEY ${GNUPGHOME}/RPM-GPG-KEY-centosofficial; \
curl -Lf -o /tmp/percona-release.rpm https://repo.percona.com/yum/percona-release-latest.noarch.rpm; \
rpmkeys --checksig /tmp/percona-release.rpm; \
+ microdnf install -y findutils; \
rpm -i /tmp/percona-release.rpm; \
rm -rf "$GNUPGHOME" /tmp/percona-release.rpm; \
rpm --import /etc/pki/rpm-gpg/PERCONA-PACKAGING-KEY; \
percona-release disable all; \
percona-release enable ps-80 ${PS_REPO}; \
- percona-release enable mysql-shell ${PS_REPO}
+ percona-release enable mysql-shell ${PS_REPO}; \
+ curl -O https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-9; \
+ rpm --import RPM-GPG-KEY-EPEL-9; \
+ curl -Lf -o /tmp/jemalloc.rpm https://rpmfind.net/linux/epel/9/Everything/x86_64/Packages/j/jemalloc-5.2.1-2.el9.x86_64.rpm; \
+ curl -Lf -o /tmp/gflags.rpm https://rpmfind.net/linux/epel/9/Everything/x86_64/Packages/g/gflags-2.2.2-9.el9.x86_64.rpm; \
+ rpmkeys --checksig /tmp/gflags.rpm /tmp/jemalloc.rpm; \
+ rpm -i /tmp/jemalloc.rpm; \
+ rpm -i /tmp/gflags.rpm; \
+ rm -f /tmp/gflags.rpm /tmp/jemalloc.rpm
RUN set -ex; \
- dnf -y install epel-release; \
+ #microdnf -y install epel-release; \
rpm -e --nodeps tzdata; \
- dnf -y install \
+ microdnf -y install \
hostname \
tzdata \
jemalloc \
@@ -59,9 +68,8 @@ RUN set -ex; \
cracklib-dicts \
tar \
policycoreutils; \
- dnf -y update \
- curl \
- glibc \
+ microdnf -y update \
+ #glibc \
libnghttp2 \
openssh \
python3-setuptools-wheel \
@@ -69,14 +77,14 @@ RUN set -ex; \
pam \
python3; \
\
- dnf -y install \
+ microdnf -y install \
percona-server-server-${FULL_PERCONA_VERSION} \
#percona-server-tokudb-${FULL_PERCONA_VERSION} \
percona-server-devel-${FULL_PERCONA_VERSION} \
percona-server-rocksdb-${FULL_PERCONA_VERSION} \
percona-icu-data-files-${FULL_PERCONA_VERSION} \
percona-mysql-shell-${FULL_MYSQL_SHELL_VERSION}; \
- dnf clean all; \
+ microdnf clean all; \
rm -rf /var/cache/dnf /var/cache/yum /var/lib/mysql
# purge and re-create /var/lib/mysql with appropriate ownership Relevant Maintainers:
|
+ curl -O https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-9; \
+ rpm --import RPM-GPG-KEY-EPEL-9; \ This key needs to be verified/exported via full fingerprint or checksum in some way like the keys above (in the same |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.