Files
ahriman/recipes/i686/Dockerfile
T
arcanis 3548b434be feat: full rootless setup (#165)
* use local devtools configs instead of global ones

* make docker image rootless

* add migration notes

* fix setup command

* fix regress jo
2026-08-14 13:34:42 +03:00

14 lines
369 B
Docker

FROM arcan1s/ahriman:edge
ENV ARCH32_KEYRING_VERSION="20231126-1.0"
USER root
RUN pacman-key --init
RUN pacman -Sy --noconfirm wget && \
wget -nv https://pool.mirror.archlinux32.org/i686/core/archlinux32-keyring-${ARCH32_KEYRING_VERSION}-any.pkg.tar.zst && \
pacman -U --noconfirm archlinux32-keyring-${ARCH32_KEYRING_VERSION}-any.pkg.tar.zst
USER ahriman