Update Dockerfile

This commit is contained in:
Namhyeon Go 2022-01-06 17:20:37 +09:00 committed by GitHub
parent bece1a8e3b
commit 53b9a34b70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

5
6.1/Dockerfile generated
View File

@ -7,9 +7,12 @@
FROM debian:bullseye-slim FROM debian:bullseye-slim
RUN set -eux; \ RUN set -eux; \
# change the repository server
sed -i 's/deb.debian.org/repo.catswords.com/g' /etc/apt/sources.list; \
sed -i 's/security.debian.org/repo.catswords.com\/debian-security/g' /etc/apt/sources.list; \
# add backports for (potentially) newer QEMU firmware packages # add backports for (potentially) newer QEMU firmware packages
suite="$(awk '$1 == "deb" { print $3; exit }' /etc/apt/sources.list)"; \ suite="$(awk '$1 == "deb" { print $3; exit }' /etc/apt/sources.list)"; \
echo "deb http://deb.debian.org/debian $suite-backports main" > /etc/apt/sources.list.d/backports.list; \ echo "deb http://repo.catswords.com/debian $suite-backports main" > /etc/apt/sources.list.d/backports.list; \
# and add APT pinning to ensure we don't accidentally get QEMU from Debian # and add APT pinning to ensure we don't accidentally get QEMU from Debian
{ \ { \
echo 'Package: src:edk2'; \ echo 'Package: src:edk2'; \