idkyet-builder (sha256:aa3e4fb961757e7e12d1b48b92eee051828e5dcce91dcdd3c8f509bc1491c1eb)

Published 2026-01-30 00:33:39 +00:00 by FML128

Installation

docker pull git.fml128.ch/fml128/idkyet-builder@sha256:aa3e4fb961757e7e12d1b48b92eee051828e5dcce91dcdd3c8f509bc1491c1eb
sha256:aa3e4fb961757e7e12d1b48b92eee051828e5dcce91dcdd3c8f509bc1491c1eb

About this package

Official containerd image of Arch Linux, a simple, lightweight Linux distribution aimed for flexibility.

Image layers

LABEL org.opencontainers.image.title=Arch Linux multilib-devel Image
LABEL org.opencontainers.image.description=Official containerd image of Arch Linux, a simple, lightweight Linux distribution aimed for flexibility.
LABEL org.opencontainers.image.authors=Santiago Torres-Arias <santiago@archlinux.org> (@SantiagoTorres), Christian Rebischke <Chris.Rebischke@archlinux.org> (@shibumi), Justin Kromlinger <hashworks@archlinux.org> (@hashworks)
LABEL org.opencontainers.image.url=https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/master/README.md
LABEL org.opencontainers.image.documentation=https://wiki.archlinux.org/title/Docker#Arch_Linux
LABEL org.opencontainers.image.source=https://gitlab.archlinux.org/archlinux/archlinux-docker
LABEL org.opencontainers.image.licenses=GPL-3.0-or-later
LABEL org.opencontainers.image.version=20260125.0.484595
LABEL org.opencontainers.image.revision=0d7c4c0017584f9bcb495105cc412d6575f04564
LABEL org.opencontainers.image.created=2026-01-25T00:06:59+00:00
COPY /rootfs/ / # buildkit
RUN /bin/sh -c ldconfig && sed -i '/BUILD_ID/a VERSION_ID=20260125.0.484595' /etc/os-release # buildkit
ENV LANG=C.UTF-8
CMD ["/usr/bin/bash"]
ARG TARGETARCH=amd64
COPY files/keys /keys # buildkit
RUN |1 TARGETARCH=amd64 /bin/sh -c pacman-key --init && pacman-key --add /keys/*.asc && if [ "$TARGETARCH" = "amd64" ]; then echo "Server = https://mirror.init7.net/archlinux/\$repo/os/\$arch" > /etc/pacman.d/mirrorlist && echo "Server = https://mirror.metanet.ch/archlinux/\$repo/os/\$arch" >> /etc/pacman.d/mirrorlist && echo "Server = https://mirror.puzzle.ch/archlinux/\$repo/os/\$arch" >> /etc/pacman.d/mirrorlist && echo "Server = https://mirror.ungleich.ch/mirror/packages/archlinux/\$repo/os/\$arch" >> /etc/pacman.d/mirrorlist && echo "Server = https://pkg.adfinis.com/archlinux/\$repo/os/\$arch" >> /etc/pacman.d/mirrorlist && pacman-key --populate archlinux && pacman-key --lsign-key 159B530F61813FB067DCFEB45B5525DF8EB9A8E1 && pacman-key --lsign-key 3038C77840D186ACAB972D50B4D82AFC37757617 && gpg --import /keys/159B530F61813FB067DCFEB45B5525DF8EB9A8E1.asc && echo -e "5\ny\n" | gpg --batch --command-fd=0 --edit-key 159B530F61813FB067DCFEB45B5525DF8EB9A8E1 trust && pacman-key --lsign-key 3056513887B78AEB && pacman -U --noconfirm 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-keyring.pkg.tar.zst' 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-mirrorlist.pkg.tar.zst' && pacman-key --lsign-key 882dcfe48e2051d48e2562abf3b607488db35a47 && pacman -U --noconfirm 'https://mirror.cachyos.org/repo/x86_64/cachyos/cachyos-keyring-20240331-1-any.pkg.tar.zst' 'https://mirror.cachyos.org/repo/x86_64/cachyos/cachyos-mirrorlist-22-1-any.pkg.tar.zst' 'https://mirror.cachyos.org/repo/x86_64/cachyos/cachyos-v3-mirrorlist-22-1-any.pkg.tar.zst'; elif [ "$TARGETARCH" = "arm64" ]; then echo "Server = https://eu.mirror.archlinuxarm.org/\$arch/\$repo/" > /etc/pacman.d/mirrorlist && pacman-key --populate archlinuxarm; fi # buildkit
RUN |1 TARGETARCH=amd64 /bin/sh -c pacman -Syu --noconfirm --needed base-devel arch-install-scripts git dosfstools mtools libisoburn erofs-utils sbsigntools fuse-overlayfs buildah curl jq rust && sed -i -e 's|^#mount_program|mount_program|g' /etc/containers/storage.conf && useradd -m builder && echo 'builder ALL=(ALL:ALL) NOPASSWD:ALL' > /etc/sudoers.d/builder && NYDUS_VERSION=$(curl -sL https://api.github.com/repos/dragonflyoss/nydus/releases/latest | jq -r '.tag_name' | sed 's/^v//') && curl -L "https://github.com/dragonflyoss/nydus/releases/download/v${NYDUS_VERSION}/nydus-static-v${NYDUS_VERSION}-linux-${TARGETARCH}.tgz" -o /tmp/nydus.tgz && tar -xzf /tmp/nydus.tgz -C /tmp && mv /tmp/nydus-static/* /usr/local/bin/ && chmod +x /usr/local/bin/nydus* /usr/local/bin/nydusd /usr/local/bin/nydusctl /usr/local/bin/nydus-image && rm -rf /tmp/nydus.tgz /tmp/nydus-static # buildkit
USER builder
RUN |1 TARGETARCH=amd64 /bin/sh -c cd /tmp/ && curl --output aurutils.tar.gz https://aur.archlinux.org/cgit/aur.git/snapshot/aurutils.tar.gz && tar xf aurutils.tar.gz && cd aurutils && makepkg --syncdeps --noconfirm # buildkit
USER root
COPY files/pacman.conf.* /etc # buildkit
RUN |1 TARGETARCH=amd64 /bin/sh -c if [ "$TARGETARCH" = "amd64" ]; then cp /etc/pacman.conf.x86_64_v3 /etc/pacman.conf; fi && chmod 644 /etc/pacman.conf && pacman -Sy --noconfirm pacman && pacman -U --noconfirm /tmp/aurutils/aurutils-*.pkg.* && mkdir -p /aur && mv /tmp/aurutils/aurutils-*.pkg.* /aur/ && repo-add /aur/aur.db.tar.gz /aur/aurutils-*.pkg.* && echo "[aur]" >> /etc/pacman.conf && echo "SigLevel = Optional TrustAll" >> /etc/pacman.conf && echo "Server = file:///aur" >> /etc/pacman.conf && if [ "$TARGETARCH" = "amd64" ]; then echo "[chaotic-aur]" >> /etc/pacman.conf && echo "Include = /etc/pacman.d/chaotic-mirrorlist" >> /etc/pacman.conf; fi && pacman -Syu --noconfirm && rm -rf /var/lib/pacman/sync/* && find /var/cache/pacman/ -type f -delete && rm /etc/pacman.d/gnupg/openpgp-revocs.d/* /etc/pacman.d/gnupg/private-keys-v1.d/* && find /var/lib/pacman/local/ -type f -name "desc" -exec sed -i '/^%INSTALLED_DB%$/,+2d' {} \; # buildkit
ENV _BUILDAH_STARTED_IN_USERNS= BUILDAH_ISOLATION=chroot
COPY ./target/release/idkyet-builder /usr/bin # buildkit
ENTRYPOINT ["idkyet-builder"]

Labels

Key Value
org.opencontainers.image.authors Santiago Torres-Arias <santiago@archlinux.org> (@SantiagoTorres), Christian Rebischke <Chris.Rebischke@archlinux.org> (@shibumi), Justin Kromlinger <hashworks@archlinux.org> (@hashworks)
org.opencontainers.image.created 2026-01-25T00:06:59+00:00
org.opencontainers.image.description Official containerd image of Arch Linux, a simple, lightweight Linux distribution aimed for flexibility.
org.opencontainers.image.documentation https://wiki.archlinux.org/title/Docker#Arch_Linux
org.opencontainers.image.licenses GPL-3.0-or-later
org.opencontainers.image.revision 0d7c4c0017584f9bcb495105cc412d6575f04564
org.opencontainers.image.source https://gitlab.archlinux.org/archlinux/archlinux-docker
org.opencontainers.image.title Arch Linux multilib-devel Image
org.opencontainers.image.url https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/master/README.md
org.opencontainers.image.version 20260125.0.484595
Details
Container
2026-01-30 00:33:39 +00:00
27
OCI / Docker
linux/amd64
Santiago Torres-Arias <santiago@archlinux.org> (@SantiagoTorres), Christian Rebischke <Chris.Rebischke@archlinux.org> (@shibumi), Justin Kromlinger <hashworks@archlinux.org> (@hashworks)
GPL-3.0-or-later
1.4 GiB
Versions (3) View all
latest 2026-01-30
2026.01.301302 2026-01-30
2026.01.300031 2026-01-30