24 lines
411 B
Docker
24 lines
411 B
Docker
FROM archlinux:latest
|
|
|
|
RUN pacman -Syu --noconfirm --needed \
|
|
base-devel \
|
|
clang \
|
|
lld \
|
|
ninja \
|
|
cmake \
|
|
pkgconf \
|
|
git \
|
|
ca-certificates \
|
|
gtkmm-4.0 \
|
|
gtk4 \
|
|
gtk4-layer-shell \
|
|
webkitgtk-6.0 \
|
|
curl \
|
|
nlohmann-json \
|
|
&& pacman -Scc --noconfirm
|
|
|
|
ENV CC=clang \
|
|
CXX=clang++
|
|
|
|
WORKDIR /workspace
|