mirror of
https://github.com/arcan1s/ahriman.git
synced 2026-08-20 15:27:26 +00:00
* use local devtools configs instead of global ones * make docker image rootless * add migration notes * fix setup command * fix regress jo
14 lines
369 B
Docker
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
|