adk (arch)

Published 2026-02-15 11:42:58 -07:00 by zontreck

Installation

docker pull git.zontreck.com/packages/adk:arch
sha256:4debb54aff4a1bbcae163a57d1c5857506064a14e59038b3d7ba96c6bd955248

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 base 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=20260208.0.488728
LABEL org.opencontainers.image.revision=0d7c4c0017584f9bcb495105cc412d6575f04564
LABEL org.opencontainers.image.created=2026-02-08T00:07:04+00:00
COPY /rootfs/ / # buildkit
RUN /bin/sh -c ldconfig && sed -i '/BUILD_ID/a VERSION_ID=20260208.0.488728' /etc/os-release # buildkit
ENV LANG=C.UTF-8
CMD ["/usr/bin/bash"]
LABEL author=Tara Piccari maintainer=tarapiccari@gmail.com
SHELL [/bin/bash -c]
ENV HOME=/root
ENV DOCKER=1
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
USER root
WORKDIR /
RUN /bin/bash -c pacman-key --init # buildkit
RUN /bin/bash -c pacman --noconfirm -Syu # buildkit
RUN /bin/bash -c pacman --noconfirm -S rsync zip unzip file openssh # buildkit
RUN /bin/bash -c echo "LC_ALL=en_US.UTF-8" >> /etc/environment # buildkit
RUN /bin/bash -c echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen # buildkit
RUN /bin/bash -c echo "LANG=en_US.UTF-8" >> /etc/locale.conf # buildkit
RUN /bin/bash -c pacman --noconfirm -S glibc # buildkit
RUN /bin/bash -c locale-gen en_US.UTF-8 # buildkit
RUN /bin/bash -c pacman --noconfirm -S base-devel gcc nasm git curl wget make cmake automake autoconf archiso squashfs-tools file # buildkit
RUN /bin/bash -c pacman --noconfirm -S ninja jdk21-openjdk sudo # buildkit
RUN /bin/bash -c useradd -m yay # buildkit
RUN /bin/bash -c usermod -a yay -G wheel # buildkit
RUN /bin/bash -c echo "yay ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers # buildkit
WORKDIR /tmp
RUN /bin/bash -c git clone https://aur.archlinux.org/yay.git # buildkit
RUN /bin/bash -c chown -R yay:yay /tmp/yay # buildkit
WORKDIR /tmp/yay
RUN /bin/bash -c su - yay -c "cd /tmp/yay && makepkg --noconfirm -si" # buildkit
WORKDIR /
RUN /bin/bash -c pacman --noconfirm -S python3 python-pip # buildkit
RUN /bin/bash -c python3 -m pip config set global.break-system-packages true # buildkit
RUN /bin/bash -c python3 -m pip install --upgrade pip # buildkit
USER yay
RUN /bin/bash -c yay -Sy # buildkit
RUN /bin/bash -c yay --noconfirm -S pkg-config lldb rustup gradle mercurial pnpm # buildkit
RUN /bin/bash -c yay --noconfirm -S dotnet-sdk-8.0 dotnet-sdk-10.0 # buildkit
RUN /bin/bash -c yay --noconfirm -S yarn repo # buildkit
USER root
ADD ./initnvm.sh /initnvm # buildkit
ENV NVM_DIR=/root/.nvm
ENV BASH_ENV=/root/.bash_env
RUN /bin/bash -c touch "${BASH_ENV}" && echo '. "${BASH_ENV}}"' >> /root/.bashrc && chmod +X /initnvm && chown root:root "${BASH_ENV}" # buildkit
RUN /bin/bash -c curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | PROFILE="${BASH_ENV}" bash # buildkit
RUN /bin/bash -c source /root/.nvm/nvm.sh # buildkit
RUN /bin/bash -c rustup update && mkdir /root/.cargo && rustup default stable # buildkit
ENV PATH=/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
ADD ./cargo.toml /root/.cargo/config.toml # buildkit
ENV ANDROID_HOME=/opt/android-sdk-linux
ENV ANDROID_SDK_VER=11076708
ENV ANDROID_SDK_ROOT=/opt/android-sdk-linux
ENV PATH=/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/android-sdk-linux/cmdline-tools:/opt/android-sdk-linux/cmdline-tools/bin:/opt/android-sdk-linux/platform-tools
COPY /opt/android-sdk-linux /opt/android-sdk-linux # buildkit
RUN /bin/bash -c mkdir -p $ANDROID_HOME/licenses # buildkit
RUN /bin/bash -c yes | $ANDROID_HOME/cmdline-tools/bin/sdkmanager --licenses --sdk_root=${ANDROID_SDK_ROOT} # buildkit
RUN /bin/bash -c mkdir -p $HOME/.android && mkdir -pv $HOME/app && touch $HOME/.android/repositories.cfg # buildkit
WORKDIR /root
RUN /bin/bash -c curl -s "https://get.sdkman.io" | bash # buildkit
COPY /packages.txt /root/packages.txt # buildkit
RUN /bin/bash -c $ANDROID_HOME/cmdline-tools/bin/sdkmanager --sdk_root=${ANDROID_SDK_ROOT} --update && while read -r pkg; do PKGS="${PKGS}${pkg} "; done < $HOME/packages.txt && $ANDROID_HOME/cmdline-tools/bin/sdkmanager --sdk_root=${ANDROID_SDK_ROOT} $PKGS && rm $HOME/packages.txt # buildkit
RUN /bin/bash -c source "${HOME}/.sdkman/bin/sdkman-init.sh" && sdk install gradle ${GRADLE_VERSION} # buildkit

Labels

Key Value
author Tara Piccari
maintainer tarapiccari@gmail.com
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-02-08T00:07:04+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 base Image
org.opencontainers.image.url https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/master/README.md
org.opencontainers.image.version 20260208.0.488728
Details
Container
2026-02-15 11:42:58 -07:00
3
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
4.1 GiB
Versions (2) View all
arch 2026-02-15
debian 2026-02-15