Debian APT DEB822-Style Sources List
緣由 因為 debian:11 套件太舊,就改用 debian:bookworm 當 base image,我在 Dockerfile 都會寫以下指令替換成交大的 mirror sed -i -e 's/deb.debian.org/debian.cs.nycu.edu.tw/g' /etc/apt/sources.list 建置 image 時發現 No such file or directory,沒有 sources.list 那要怎麼下載套件? 跑了一個容器進去一看,還真的沒有 /etc/apt/sources.list,取而代之的是 /etc/apt/sources.list.d/debian.sources,網路上一查才知道 APT 1.1 後支援 DEB822-Style 格式,而 Debian 12 成為 sources list 預設格式。 會改變預設格式一定是有他們的考量,所以來看看 DEB822-Style 格式的差異吧。 ...