DockerがCentOS 6を使用しているときにインストールすると、git
次の依存関係エラーが発生します。
Error: Package: glibc-2.12-1.166.el6_7.7.i686 (updates)
Requires: glibc-common = 2.12-1.166.el6_7.7
Installed: glibc-common-2.12-1.192.el6.x86_64 (@CR/6.7)
glibc-common = 2.12-1.192.el6
Available: glibc-common-2.12-1.166.el6.x86_64 (base)
glibc-common = 2.12-1.166.el6
Available: glibc-common-2.12-1.166.el6_7.1.x86_64 (updates)
glibc-common = 2.12-1.166.el6_7.1
Available: glibc-common-2.12-1.166.el6_7.3.x86_64 (updates)
glibc-common = 2.12-1.166.el6_7.3
Available: glibc-common-2.12-1.166.el6_7.7.x86_64 (updates)
glibc-common = 2.12-1.166.el6_7.7
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
Service 'docker-project' failed to build: The command '/bin/sh -c yum install -y \
java-1.8.0-openjdk-devel.x86_64 \
unzip \
git \
&& yum clean all' returned a non-zero code: 1
数日前に動作しましたが、何も変更されませんでした。 CentOSリポジトリはどうなりましたか?
ちなみにこれは私のものですDockerfile
。
FROM centos:6
RUN yum install -y \
java-1.8.0-openjdk-devel.x86_64 \
unzip \
git \
&& yum clean all
答え1
EPELリポジトリがアクティブになるたびに、いくつかの競合が発生します。git
次のコマンドを使用してインストールしてみてください。
yum install git --disablerepo=epel
exclude=git*
ファイルにgitを追加すると、EPELリポジトリからgitを永久に除外できます/etc/yum.repos.d/epel.repo
。
答え2
EPELリポジトリを削除しても--disablerep=epel
役に立ちません。最後に一つ作ったらdocker pull centos:centos6
問題が解決したようです。最近の更新で修正された画像の一時的な問題のようです。