mirror of
https://gitlab.archlinux.org/archlinux/archlinux-docker.git
synced 2026-02-09 19:31:03 +01:00
Release 20201028.0.7504
This commit is contained in:
parent
030422683c
commit
8407d4a666
@ -0,0 +1,32 @@
|
||||
# We're using a multistage Docker build here in order to allow us to release a self-verifying
|
||||
# Docker image when built on the official Docker infrastructure.
|
||||
# They require us to verify the source integrity in some way while making sure that this is a
|
||||
# reproducible build.
|
||||
# See https://github.com/docker-library/official-images#image-build
|
||||
# In order to achieve this, we externally host the rootfs archives and their checksums and then
|
||||
# just download and verify it in the first stage of this Dockerfile.
|
||||
# The second stage is for actually configuring the system a little bit.
|
||||
# Some templating is done in order to allow us to easily build different configurations and to
|
||||
# allow us to automate the releaes process.
|
||||
FROM archlinux:latest AS verify
|
||||
SHELL ["/bin/bash", "-c"]
|
||||
RUN ROOTFS="$(curl -OJL --continue-at - -w "%{filename_effective}" https://gitlab.archlinux.org/archlinux/archlinux-docker/-/package_files/89/download)" && \
|
||||
sha256sum -c <<< "1bd86e51805e9177626c0f0f01d0e31ac6fc9798501805c1383cf32f21289356 base-20201028.0.7504.tar.xz" && \
|
||||
mkdir /rootfs && \
|
||||
tar -C /rootfs --extract --auto-compress --file "${ROOTFS}"
|
||||
|
||||
FROM scratch AS root
|
||||
COPY --from=verify /rootfs/ /
|
||||
|
||||
# manually run all alpm hooks that can't be run inside the fakechroot
|
||||
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 archlinux keyring, but discard any private key that may be shipped.
|
||||
RUN pacman-key --init && pacman-key --populate archlinux && bash -c "rm -rf etc/pacman.d/gnupg/{openpgp-revocs.d/,private-keys-v1.d/,pubring.gpg~,gnupg.S.}*"
|
||||
|
||||
ENV LANG=en_US.UTF-8
|
||||
CMD ["/usr/bin/bash"]
|
||||
@ -0,0 +1,32 @@
|
||||
# We're using a multistage Docker build here in order to allow us to release a self-verifying
|
||||
# Docker image when built on the official Docker infrastructure.
|
||||
# They require us to verify the source integrity in some way while making sure that this is a
|
||||
# reproducible build.
|
||||
# See https://github.com/docker-library/official-images#image-build
|
||||
# In order to achieve this, we externally host the rootfs archives and their checksums and then
|
||||
# just download and verify it in the first stage of this Dockerfile.
|
||||
# The second stage is for actually configuring the system a little bit.
|
||||
# Some templating is done in order to allow us to easily build different configurations and to
|
||||
# allow us to automate the releaes process.
|
||||
FROM archlinux:latest AS verify
|
||||
SHELL ["/bin/bash", "-c"]
|
||||
RUN ROOTFS="$(curl -OJL --continue-at - -w "%{filename_effective}" https://gitlab.archlinux.org/archlinux/archlinux-docker/-/package_files/91/download)" && \
|
||||
sha256sum -c <<< "a1aa414ab3d5c6f90332330c23354abf2fe89417550411c00db2256d2aae24f7 base-devel-20201028.0.7504.tar.xz" && \
|
||||
mkdir /rootfs && \
|
||||
tar -C /rootfs --extract --auto-compress --file "${ROOTFS}"
|
||||
|
||||
FROM scratch AS root
|
||||
COPY --from=verify /rootfs/ /
|
||||
|
||||
# manually run all alpm hooks that can't be run inside the fakechroot
|
||||
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 archlinux keyring, but discard any private key that may be shipped.
|
||||
RUN pacman-key --init && pacman-key --populate archlinux && bash -c "rm -rf etc/pacman.d/gnupg/{openpgp-revocs.d/,private-keys-v1.d/,pubring.gpg~,gnupg.S.}*"
|
||||
|
||||
ENV LANG=en_US.UTF-8
|
||||
CMD ["/usr/bin/bash"]
|
||||
Loading…
x
Reference in New Issue
Block a user