From a5a0d5a031c609238bf943e39a38a4ea8239b765 Mon Sep 17 00:00:00 2001 From: sha512sum Date: Thu, 26 Sep 2024 15:50:50 +0000 Subject: [PATCH] Add auto install dependencies from repositories with pacman instead CPM installing on docker container --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 655b587..3a3a16a 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -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 \