17 lines
396 B
Docker
17 lines
396 B
Docker
from archlinux:latest
|
|
|
|
RUN pacman --sync --refresh --sysupgrade --needed --noconfirm \
|
|
base-devel \
|
|
ccache \
|
|
cmake \
|
|
git \
|
|
gtest \
|
|
mariadb-libs \
|
|
protobuf \
|
|
qt6-base \
|
|
qt6-multimedia \
|
|
qt6-svg \
|
|
qt6-tools \
|
|
qt6-translations \
|
|
qt6-websockets \
|
|
&& pacman --sync --clean --clean --noconfirm
|