WSL の Ubuntu には sudo、wget、byobu 等の普段良く使うツールがあらかじめインストールされていますが、Docker のデフォルトの Ubuntu イメージは最小限必要な構成になっているため、これらはインストールされていません。
必要なパッケージをひとつひとつインストールするように dockerfile を書くのも大変なので、まとめてインストールできるよう調べてみました。
環境
- Docker の Ubuntu イメージ: ubuntu:20.04
結論
いろいろ検討した結果、dockerfile は以下の通りです。
$ cat dockerfile
FROM ubuntu:20.04
RUN apt update && apt -y upgrade
RUN apt update && apt -y upgrade
ARG DEBIAN_FRONTEND=noninteractive
RUN apt install -y ubuntu-minimal
RUN apt install -y ubuntu-standard
RUN apt install -y ubuntu-server
RUN apt-get clean
RUN rm -rf /var/lib/apt/lists/*
以下、この dockerfile を作成するために検討した内容です。
WSL のパッケージを確認
上述の通り、WSL の Ubuntu には sudo、wget、byobu 等の普段良く使うツールがインストールされているので、これらを依存関係として持っている大元のパッケージを確認します。以下、WSL にインストールした Ubuntu で実施しています。
まずはインストールされているパッケージ一覧を取得するため、`dpkg -l’ の出力を確認
$ dpkg -l
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-==============================-=====================================-============-=================================================================>
ii accountsservice 0.6.55-0ubuntu12~20.04.4 amd64 query and manipulate user account information
ii adduser 3.118ubuntu2 all add and remove users and groups
ii alsa-topology-conf 1.2.2-1 all ALSA topology configuration files
... (省略) ...
というように、最初の 5行目まではヘッダ情報で、6行目以降の「ii
」に続く 2項目がインストールされているパッケージのようなので、これを抜き取りパッケージ一覧を作ります。
$ dpkg -l | tail -n +6 | awk '{print $2}'
accountsservice
adduser
alsa-topology-conf
... (省略) ...
これらすべてのパッケージの依存関係一覧を取得します。
$ dpkg -l | tail -n +6 | awk '{print $2}'| xargs -I{} apt depends {} 2>/dev/null | less
出力の中から、sudo、wget、byobu 等に依存関係を持っているパッケージを見てみると、ubuntu-minimal、ubuntu-standard、ubuntu-server パッケージによく使うコマンドやツールが一通り依存関係に含まれていることがわかりました。
Docker の Ubuntu イメージに ubuntu-minimal、ubuntu-standard、ubuntu-server パッケージをインストールしようとすると予期しないエラーその 1が発生
本題とはそれますが、予期しないエラーが出ました。
まず、ubuntu-minimal、ubuntu-standard、ubuntu-server パッケージをインストールする dockerfile は以下のようににしてみました。
$ cat dockerfile
FROM ubuntu:20.04
RUN apt update && apt -y upgrade
RUN apt install -y ubuntu-minimal
RUN apt install -y ubuntu-standard
RUN apt install -y ubuntu-server
この docker ファイルでイメージを build すると、予期しないエラーが出ました。
$ docker build --tag test-with-tools:1 ./
... (省略) ...
#5 144.7 E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd-timesyncd_245.4-4ubuntu3.14_amd64.deb 404 Not Found [IP: 91.189.88.142 80]
... (省略) ...
executor failed running [/bin/sh -c apt install -y ubuntu-minimal]: exit code: 100
例えば、「http://archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd-timesyncd_245.4-4ubuntu3.14_amd64.deb
」がダウンロード出来ないとのことです。
ブラウザでこの URL を開いてみると「Not Found
」と出ました。サーバーは動いているが、指定したファイルが存在しないようです。
そこで、「systemd-timesyncd_245.4-4ubuntu3.14_amd64.deb
」が置かれているディレクトリ「http://archive.ubuntu.com/ubuntu/pool/main/s/systemd/
」をブラウザで開いてみると
「systemd-timesyncd_245.4-4ubuntu3.15_amd64.deb
」は置かれているが
「systemd-timesyncd_245.4-4ubuntu3.14_amd64.deb
」は置かれていないことがわかります。
古いバージョンの「systemd-timesyncd_245.4-4ubuntu3.14_amd64.deb
」をダウンロードしようとしてエラーになっているようです。
dockerfile を見てみると「RUN apt update && apt -y upgrade
」というように古いリポジトリ情報で apt update し、その後 apt upgrade しているので、このタイミングでリポジトリ情報が新しいものに更新されていると想定されます。なので、もう一度 update すれば良いのではないかと思われます。(ついでに upgrade も実施)
この時点で dockerfile は以下のようになってます。
$ cat dockerfile
FROM ubuntu:20.04
RUN apt update && apt -y upgrade
RUN apt update && apt -y upgrade
RUN apt install -y ubuntu-minimal
RUN apt install -y ubuntu-standard
RUN apt install -y ubuntu-server
無事 Docker イメージのビルドが進みました。(が、以下の予期しないエラーその 2が発生しました)
Docker の Ubuntu イメージに ubuntu-minimal、ubuntu-standard、ubuntu-server パッケージをインストールしようとすると予期しないエラーその 2が発生
以下のエラーです。
#6 242.1 Errors were encountered while processing:
#6 242.1 console-setup
#6 242.1 ubuntu-minimal
#6 242.1 E: Sub-process /usr/bin/dpkg returned an error code (1)
------
executor failed running [/bin/sh -c apt install -y ubuntu-minimal]: exit code: 100
ubuntu-minimal と依存関係がある console-setup をインストールしうようとしていてエラーになっているっぽいです。
更にメッセージを見てみると、
#6 241.9 If you don't use a framebuffer, the choices that start with "." will reduce the
#6 241.9 number of available colors on the console.
#6 241.9
#6 241.9 1. . Arabic
#6 241.9 2. # Armenian
#6 241.9 3. # Cyrillic - KOI8-R and KOI8-U
... (省略) ...
#6 241.9 21. . Combined - Latin; Slavic Cyrillic; Greek
#6 241.9 22. . Combined - Latin; Slavic and non-Slavic Cyrillic
#6 241.9 23. Guess optimal character set
#6 241.9
#6 241.9 Character set to support:
と出ているので、コンソールから入力を求められているが、スクリプトでの処理のため入力できずエラーとなったようです。
ググると環境変数で「DEBIAN_FRONTEND=noninteractive
」を指定すると良いようなので dockerfile は以下のようにしました。
コンテナの中に環境変数 DEBIAN_FRONTEND
を残したくないので「ENV DEBIAN_FRONTEND=noninteractive
」ではなく、「ARG DEBIAN_FRONTEND=noninteractive
」としてます。
$ cat dockerfile
FROM ubuntu:20.04
RUN apt update && apt -y upgrade
RUN apt update && apt -y upgrade
ARG DEBIAN_FRONTEND=noninteractive
RUN apt install -y ubuntu-minimal
RUN apt install -y ubuntu-standard
RUN apt install -y ubuntu-server
apt インストールのキャッシュを削除してイメージのサイズを少しでも減らす
ググると apt install した時のキャッシュを削除してイメージのサイズを小さくすると良いとのことなので dockerfile に追加しました。
$ cat dockerfile
FROM ubuntu:20.04
RUN apt update && apt -y upgrade
RUN apt update && apt -y upgrade
ARG DEBIAN_FRONTEND=noninteractive
RUN apt install -y ubuntu-minimal
RUN apt install -y ubuntu-standard
RUN apt install -y ubuntu-server
RUN apt-get clean
RUN rm -rf /var/lib/apt/lists/*
0 件のコメント:
コメントを投稿