Added step to disable Subscription Manager for YUM during RHEL Docker build

This commit is contained in:
Matthew Garrett 2024-06-15 19:23:03 -07:00
Родитель 2a976e80c9
Коммит b37c6dbffb
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -40,6 +40,9 @@ WORKDIR /tmp
# Switch to Root User
USER root
# Disable Subscription Manager YUM Plugin
RUN sed -i s/enabled=./enabled=0/g /etc/yum/pluginconf.d/subscription-manager.conf
# Install OpenSSH and set the password for root to "Docker!"
RUN yum update -y
RUN yum install -qq openssh-server -y \