From 238fd3b539679a9f53f0b9523f8e4b8d749697d2 Mon Sep 17 00:00:00 2001 From: Rubén Beltrán del Río Date: Sun, 18 Jan 2026 15:20:57 +0100 Subject: Use Containerfiles for builds --- build-containers/arch/Containerfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 build-containers/arch/Containerfile (limited to 'build-containers/arch') diff --git a/build-containers/arch/Containerfile b/build-containers/arch/Containerfile new file mode 100644 index 0000000..aacf2a2 --- /dev/null +++ b/build-containers/arch/Containerfile @@ -0,0 +1,21 @@ +FROM ogarcia/archlinux:latest + +RUN pacman -Syu --noconfirm \ + make \ + clang \ + lld \ + curl \ + tar \ + gzip \ + gettext \ + gtk4 \ + libadwaita \ + gtksourceview5 \ + fakeroot \ + rsync \ + rust \ + pkgconf \ + && pacman -Scc --noconfirm + +# Create builder user for makepkg (can't run as root) +RUN useradd -m builder -- cgit