diff options
Diffstat (limited to 'Containerfile.ci')
| -rw-r--r-- | Containerfile.ci | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Containerfile.ci b/Containerfile.ci new file mode 100644 index 0000000..df60a66 --- /dev/null +++ b/Containerfile.ci @@ -0,0 +1,27 @@ +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 |
