Add auto install dependencies from repositories with pacman instead CPM installing on docker container

This commit is contained in:
sha512sum 2024-09-26 15:50:50 +00:00
parent a9a8678e86
commit a5a0d5a031

View file

@ -6,7 +6,7 @@ FROM archlinux@sha256:a10e51dd0694d6c4142754e9d06cbce7baf91ace8031a30df37064d109
# Update the package database and install clang
RUN pacman -Syyu --noconfirm \
&& pacman -S --noconfirm git less vim sudo base-devel \
&& pacman -S --noconfirm clang cmake make ninja gtk4 gtkmm-4.0
&& pacman -S --noconfirm clang cmake make ninja gtk4 gtkmm-4.0 boost spdlog fmt pugixml
# Create a non-root user 'dev'
RUN useradd -ms /bin/bash dev \