diff options
Diffstat (limited to 'build-containers/arch/Containerfile')
| -rw-r--r-- | build-containers/arch/Containerfile | 21 |
1 files changed, 21 insertions, 0 deletions
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 |