Dockerfile: manually symlink os-release

This commit is contained in:
Santiago Torres 2020-06-08 10:54:44 -04:00
parent 8f683e3cdc
commit 9bd11c95c2
No known key found for this signature in database
GPG Key ID: 468F122CE8162295

View File

@ -2,9 +2,12 @@ FROM scratch
ADD archlinux.tar.xz /
# manually run all alpm hooks that can't be run inside the fakechroot
RUN ldconfig && update-ca-trust && locale-gen
RUN ldconfig && update-ca-trust && locale-gen
RUN sh -c 'ls usr/lib/sysusers.d/*.conf | /usr/share/libalpm/scripts/systemd-hook sysusers '
# update /etc/os-release
RUN ln -s /usr/lib/os-release /etc/os-release
# initialize the archilnux keyring, but discard any private key that may be shipped.
RUN pacman-key --init && pacman-key --populate archlinux
RUN rm -rf etc/pacman.d/gnupg/{openpgp-revocs.d/,private-keys-v1.d/,pugring.gpg~,gnupg.S.}*