Skip to content

Commit

Permalink
Fixes telnet package issue in MongoDB 6 image.
Browse files Browse the repository at this point in the history
  • Loading branch information
maqeel75 committed Dec 18, 2024
1 parent baced83 commit e8f1da3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion percona-server-mongodb-6.0/Dockerfile.k8s
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,10 @@ ARG DEBUG
RUN if [[ -n $DEBUG ]] ; then \
set -ex; \
sed -i 's/exec "$@"/exec "$@" -vvv || sleep infinity/' /entrypoint.sh; \
curl -Lf -o /tmp/telnet.rpm http://vault.centos.org/centos/8/AppStream/x86_64/os/Packages/telnet-0.17-76.el8.x86_64.rpm; \
curl -O https://repo.almalinux.org/almalinux/RPM-GPG-KEY-AlmaLinux-9; \
rpm --import RPM-GPG-KEY-AlmaLinux-9; \
curl -Lf -o /tmp/telnet.rpm https://raw.repo.almalinux.org/almalinux/9.5/AppStream/x86_64/os/Packages/telnet-0.17-85.el9.x86_64.rpm; \
rpmkeys --checksig /tmp/telnet.rpm; \
rpm -i /tmp/telnet.rpm; \
rm -f /tmp/telnet.rpm; \

Expand Down

0 comments on commit e8f1da3

Please sign in to comment.