EOLしたCent OS 7系のDockerfileのビルド

はじめに

2024/06/30にEOLしたCent OS 7系をビルドする。

環境

  • Ubuntu 24.04
  • buildah 1.33.7
  • Cent OS 7.6.1810

問題、課題

Cent OSをベースイメージとして使用するDockrfileをビルドしようとしたときに公式レポジトリがサービスの提供を終了しており、失敗する。

以下のようなエラーを確認した。

$ buildah bud ./Dokerfile
     1. Contact the upstream for the repository and get them to fix the problem.

     2. Reconfigure the baseurl/etc. for the repository, to point to a working
        upstream. This is most often useful if you are using a newer
        distribution release than is supported by the repository (and the
        packages for the previous distribution release still work).

     3. Run the command with the repository temporarily disabled
            yum --disablerepo=<repoid> ...

     4. Disable the repository permanently, so yum won't use it by default. Yum
        will then just ignore the repository until you permanently enable it
        again or use --enablerepo for temporary usage:

            yum-config-manager --disable <repoid>
        or
            subscription-manager repos --disable=<repoid>

     5. Configure the failing repository to be skipped, if it is unavailable.
        Note that yum will try to contact the repo. when it runs most commands,
        so will have to try and fail each time (and thus. yum will be be much
        slower). If it is a very temporary problem though, this is often a nice
        compromise:

            yum-config-manager --save --setopt=<repoid>.skip_if_unavailable=true

Cannot find a valid baseurl for repo: base/x86_64

解決、構築

レポジトリのミラーサイトの検索

上記のミラーサイトが以下より検索できる。 https://www.centos.org/download/mirrors/

今回は以下の、Jaist(北陸先端科学技術大学院大学)のレポジトリを使用する。 ftp.jaist.ac.jp

ビルド

今回、以下のようにレポジトリを参照するファイルを書き換える。

 1 # CentOS-Base.repo
 2 #
 3 # The mirror system uses the connecting IP address of the client and the
 4 # update status of each mirror to pick mirrors that are updated to and
 5 # geographically close to the client.  You should use this for CentOS updates
 6 # unless you are manually picking other mirrors.
 7 #
 8 # If the mirrorlist= does not work for you, as a fall back you can try the
 9 # remarked out baseurl= line instead.
10 #
11 #
12
13 [base]
14 name=CentOS-$releasever - Base
15 mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra
16 #baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
17 gpgcheck=1
18 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
19
20 #released updates
21 [updates]
22 name=CentOS-$releasever - Updates
23 mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates&infra=$infra
24 #baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
25 gpgcheck=1
26 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
27
28 #additional packages that may be useful
29 [extras]
30 name=CentOS-$releasever - Extras
31 mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras&infra=$infra
32 #baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/
33 gpgcheck=1
34 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
35
36 #additional packages that extend functionality of existing packages
37 [centosplus]
38 name=CentOS-$releasever - Plus
39 mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus&infra=$infra
40 #baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/
41 gpgcheck=1
42 enabled=0
43 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

変更内容は以下とする。

  • [baseurl] に先に調べたURLリンクに書き換え、末尾に /os/$basearch/ を追加
  • [updates]、[extras]を参照しないようにenabled=0を追加する。

そのため、Dockerfileを以下のように記載した。

FROM centos:7.6.1810

Run sed -i '25a enabled=0' /etc/yum.repos.d/CentOS-Base.repo
Run sed -i '33a enabled=0' /etc/yum.repos.d/CentOS-Base.repo

Run sed -i 's|^mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra|#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arc    h=$basearch&repo=os&infra=$infra|g' /etc/yum.repos.d/CentOS-Base.repo
Run sed -i 's|#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/|baseurl=https://ftp.jaist.ac.jp/pub/Linux/CentOS-vault/7.6.1810/os/$basearch/|g' /etc/yum.repos.    d/CentOS-Base.repo

RUN yum install -y vim

これでビルドする。

$ buildah bud ./Dokerfile

これで無事にビルドを成功することができた。

参考

qiita.com