So beheben Sie den Fehler bei der Installation des Puppet-Clients auf CentOS 7 mit Dockerfile: Paket: ruby-augeas-0.4.1-3.el6.x86_64

So beheben Sie den Fehler bei der Installation des Puppet-Clients auf CentOS 7 mit Dockerfile: Paket: ruby-augeas-0.4.1-3.el6.x86_64

Ich versuche, mit diesem zu puppet-clientinstallierendocker centos-latestdockerfile

# Base OS
FROM centos

# Install puppet
ENV PUPPET_VERSION 3.7.3
RUN rpm --import https://yum.puppetlabs.com/RPM-GPG-KEY-puppetlabs && rpm -ivh http://yum.puppetlabs.com/puppetlabs-release-el-6.noarch.rpm
RUN yum install -y yum-utils && yum-config-manager --enable centosplus >& /dev/null
RUN yum install -y puppet-$PUPPET_VERSION

aber wenn ich es ausführe bekomme ich

---> Package ruby-irb.noarch 0:2.0.0.598-24.el7 will be installed
---> Package ruby-shadow.x86_64 1:2.2.0-2.el6 will be installed
--> Processing Dependency: libruby.so.1.8()(64bit) for package: 1:ruby-shadow-2.2.0-2.el6.x86_64
--> Finished Dependency Resolution
Error: Package: ruby-augeas-0.4.1-3.el6.x86_64 (puppetlabs-deps)
           Requires: libruby.so.1.8()(64bit)
Error: Package: 1:ruby-shadow-2.2.0-2.el6.x86_64 (puppetlabs-deps)
           Requires: libruby.so.1.8()(64bit)
Error: Package: ruby-augeas-0.4.1-3.el6.x86_64 (puppetlabs-deps)
           Requires: ruby(abi) = 1.8
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest
INFO[0003] The command [/bin/sh -c yum install -y puppet-$PUPPET_VERSION] returned a non-zero code: 1 

Wie kann ich dieses Skript reparieren dockerfile? (Hinweis: Ich möchte die neueste Version verwenden centos.)

Antwort1

gelöst durch Ersetzen von:

http://yum.puppetlabs.com/puppetlabs-release-el-6.noarch.rpm

mit:

http://yum.puppetlabs.com/puppetlabs-release-el-7.noarch.rpm

verwandte Informationen