blob: a07cdeb66dde5f8ad826e3492c07295e9cccf6ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com>
# SPDX-License-Identifier: CC0-1.0
FROM docker.io/archlinux:base-devel
LABEL org.opencontainers.image.title="turns CI image"
ADD etc/locale.gen /etc/locale.gen
RUN pacman-key --init \
&& echo 'NoExtract = !usr/share/locale/* !usr/share/i18n/*' >> /etc/pacman.conf \
&& pacman -Syu --noconfirm --noprogressbar \
'glibc' \
&& pacman -Syu --noconfirm --noprogressbar --needed \
'catch2>=3.6' \
'cmake>=3.31' \
'gcc>=14.2.0' \
'git' \
'glib2-devel>=2.84' \
'gobject-introspection>=1.84' \
'gtkmm-4.0>=4.18' \
'libadwaita>=1.7' \
'lcov' \
'ninja>=1.11' \
'pkgconf' \
'valgrind' \
'weston' \
&& locale-gen \
&& useradd -m builduser \
&& yes | pacman -Sccdd
ENV XDG_RUNTIME_DIR=/tmp \
WAYLAND_DISPLAY=wl-test-env
USER builduser
|