This commit is contained in:
tooomm 2026-06-14 03:22:15 -07:00 committed by GitHub
commit ef4753592f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 153 additions and 166 deletions

View file

@ -1,19 +1,16 @@
from archlinux:latest from archlinux:latest
RUN pacman --sync --refresh --sysupgrade --needed --noconfirm \ RUN pacman --sync --refresh --sysupgrade --needed --noconfirm \
base-devel \ ccache \
ccache \ cmake \
cmake \ gcc \
git \ # gtest Exclude gtest to confirm fallback download and building from google repo keeps working
gtest \ ninja \
mariadb-libs \ protobuf \
ninja \ qt6-imageformats \
protobuf \ qt6-multimedia \
qt6-base \ qt6-svg \
qt6-imageformats \ qt6-tools \
qt6-multimedia \ qt6-translations \
qt6-svg \ qt6-websockets \
qt6-tools \
qt6-translations \
qt6-websockets \
&& pacman --sync --clean --clean --noconfirm && pacman --sync --clean --clean --noconfirm

View file

@ -1,28 +1,25 @@
FROM debian:12 FROM debian:12-slim
RUN apt-get update && \ ARG DEBIAN_FRONTEND=noninteractive
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \ RUN apt-get update \
ccache \ && apt-get install -y --no-install-recommends \
clang-format \ ccache \
cmake \ cmake \
file \ file \
g++ \ g++ \
git \ libgl-dev \
libgl-dev \ libgtest-dev \
liblzma-dev \ liblzma-dev \
libmariadb-dev-compat \ libprotobuf-dev \
libprotobuf-dev \ libqt6multimedia6 \
libqt6multimedia6 \ ninja-build \
libqt6sql6-mysql \ protobuf-compiler \
ninja-build \ qt6-image-formats-plugins \
protobuf-compiler \ qt6-l10n-tools \
qt6-image-formats-plugins \ qt6-multimedia-dev \
qt6-l10n-tools \ qt6-svg-dev \
qt6-multimedia-dev \ qt6-tools-dev \
qt6-svg-dev \ qt6-tools-dev-tools \
qt6-tools-dev \ qt6-websockets-dev \
qt6-tools-dev-tools \
qt6-websockets-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*

View file

@ -1,29 +1,25 @@
FROM debian:13 FROM debian:13-slim
RUN apt-get update && \ ARG DEBIAN_FRONTEND=noninteractive
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \ RUN apt-get update \
ca-certificates \ && apt-get install -y --no-install-recommends \
ccache \ ccache \
clang-format \ cmake \
cmake \ file \
file \ g++ \
g++ \ libgl-dev \
git \ libgtest-dev \
libgl-dev \ liblzma-dev \
liblzma-dev \ libprotobuf-dev \
libmariadb-dev-compat \ libqt6multimedia6 \
libprotobuf-dev \ ninja-build \
libqt6multimedia6 \ protobuf-compiler \
libqt6sql6-mysql \ qt6-image-formats-plugins \
ninja-build \ qt6-l10n-tools \
protobuf-compiler \ qt6-multimedia-dev \
qt6-image-formats-plugins \ qt6-svg-dev \
qt6-l10n-tools \ qt6-tools-dev \
qt6-multimedia-dev \ qt6-tools-dev-tools \
qt6-svg-dev \ qt6-websockets-dev \
qt6-tools-dev \
qt6-tools-dev-tools \
qt6-websockets-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*

View file

@ -1,16 +1,19 @@
FROM fedora:43 FROM fedora:43
RUN dnf install -y \ RUN dnf install -y --nodocs --setopt=install_weak_deps=False \
ccache \ ccache \
cmake \ cmake \
gcc-c++ \ gcc-c++ \
git \ gtest-devel \
mariadb-devel \ ninja-build \
ninja-build \ protobuf-devel \
protobuf-devel \ qt6-qtimageformats \
qt6-{qttools,qtsvg,qtmultimedia,qtwebsockets}-devel \ qt6-qtmultimedia-devel \
qt6-qtimageformats \ qt6-qtsvg-devel \
rpm-build \ qt6-qttools-devel \
xz-devel \ qt6-qtwebsockets-devel \
zlib-devel \ rpm-build \
&& dnf clean all xz-devel \
zlib-devel \
&& dnf clean all \
&& rm -rf /var/cache/dnf

View file

@ -1,16 +1,19 @@
FROM fedora:44 FROM fedora:44
RUN dnf install -y \ RUN dnf install -y --nodocs --setopt=install_weak_deps=False \
ccache \ ccache \
cmake \ cmake \
gcc-c++ \ gcc-c++ \
git \ gtest-devel \
mariadb-devel \ ninja-build \
ninja-build \ protobuf-devel \
protobuf-devel \ qt6-qtimageformats \
qt6-{qttools,qtsvg,qtmultimedia,qtwebsockets}-devel \ qt6-qtmultimedia-devel \
qt6-qtimageformats \ qt6-qtsvg-devel \
rpm-build \ qt6-qttools-devel \
xz-devel \ qt6-qtwebsockets-devel \
zlib-devel \ rpm-build \
&& dnf clean all xz-devel \
zlib-devel \
&& dnf clean all \
&& rm -rf /var/cache/dnf

View file

@ -1,21 +1,19 @@
FROM debian:12 FROM debian:12-slim
RUN apt-get update && \ ARG DEBIAN_FRONTEND=noninteractive
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \ RUN apt-get update \
ccache \ && apt-get install -y --no-install-recommends \
clang-format \ ccache \
cmake \ cmake \
file \ file \
g++ \ g++ \
git \ libmariadb-dev-compat \
libmariadb-dev-compat \ libprotobuf-dev \
libprotobuf-dev \ libqt6sql6-mysql \
libqt6sql6-mysql \ ninja-build \
ninja-build \ protobuf-compiler \
protobuf-compiler \ qt6-tools-dev \
qt6-tools-dev \ qt6-tools-dev-tools \
qt6-tools-dev-tools \ qt6-websockets-dev \
qt6-websockets-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*

View file

@ -1,28 +1,25 @@
FROM ubuntu:24.04 FROM ubuntu:24.04
RUN apt-get update && \ ARG DEBIAN_FRONTEND=noninteractive
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \ RUN apt-get update \
ccache \ && apt-get install -y --no-install-recommends \
clang-format \ ccache \
cmake \ cmake \
file \ file \
g++ \ g++ \
git \ libgl-dev \
libgl-dev \ libgtest-dev \
liblzma-dev \ liblzma-dev \
libmariadb-dev-compat \ libprotobuf-dev \
libprotobuf-dev \ libqt6multimedia6 \
libqt6multimedia6 \ ninja-build \
libqt6sql6-mysql \ protobuf-compiler \
ninja-build \ qt6-image-formats-plugins \
protobuf-compiler \ qt6-l10n-tools \
qt6-image-formats-plugins \ qt6-multimedia-dev \
qt6-l10n-tools \ qt6-svg-dev \
qt6-multimedia-dev \ qt6-tools-dev \
qt6-svg-dev \ qt6-tools-dev-tools \
qt6-tools-dev \ qt6-websockets-dev \
qt6-tools-dev-tools \
qt6-websockets-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*

View file

@ -1,29 +1,25 @@
FROM ubuntu:26.04 FROM ubuntu:26.04
RUN apt-get update && \ ARG DEBIAN_FRONTEND=noninteractive
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \ RUN apt-get update \
ca-certificates \ && apt-get install -y --no-install-recommends \
ccache \ ccache \
clang-format \ cmake \
cmake \ file \
file \ g++ \
g++ \ libgl-dev \
git \ libgtest-dev \
libgl-dev \ liblzma-dev \
liblzma-dev \ libprotobuf-dev \
libmariadb-dev-compat \ libqt6multimedia6 \
libprotobuf-dev \ ninja-build \
libqt6multimedia6 \ protobuf-compiler \
libqt6sql6-mysql \ qt6-image-formats-plugins \
ninja-build \ qt6-l10n-tools \
protobuf-compiler \ qt6-multimedia-dev \
qt6-image-formats-plugins \ qt6-svg-dev \
qt6-l10n-tools \ qt6-tools-dev \
qt6-multimedia-dev \ qt6-tools-dev-tools \
qt6-svg-dev \ qt6-websockets-dev \
qt6-tools-dev \
qt6-tools-dev-tools \
qt6-websockets-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*