FROM docker.io/archlinux:latest LABEL org.opencontainers.image.title="bookie CI image" RUN pacman-key --init \ && pacman -Syu --noconfirm --noprogressbar \ 'archlinux-keyring' \ && pacman -Syu --noconfirm --noprogressbar --needed \ 'base-devel' \ 'catch2>=3.6' \ 'cmake>=3.29' \ 'gcc>=14.1.0' \ 'git' \ 'gtkmm-4.0>=4.14' \ 'libadwaita>=1.5' \ 'lcov' \ 'ninja>=1.11' \ 'pkgconf' \ 'weston' \ && yes | pacman -Sccdd \ && useradd -m builduser \ && echo 'builduser ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers ENV XDG_RUNTIME_DIR=/tmp \ WAYLAND_DISPLAY=wl-test-env USER builduser