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,15 +1,12 @@
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 \
git \ gcc \
gtest \ # gtest Exclude gtest to confirm fallback download and building from google repo keeps working
mariadb-libs \
ninja \ ninja \
protobuf \ protobuf \
qt6-base \
qt6-imageformats \ qt6-imageformats \
qt6-multimedia \ qt6-multimedia \
qt6-svg \ qt6-svg \

View file

@ -1,20 +1,18 @@
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 \
&& apt-get install -y --no-install-recommends \
ccache \ ccache \
clang-format \
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 \
libqt6sql6-mysql \
ninja-build \ ninja-build \
protobuf-compiler \ protobuf-compiler \
qt6-image-formats-plugins \ qt6-image-formats-plugins \
@ -24,5 +22,4 @@ RUN apt-get update && \
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,21 +1,18 @@
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++ \
git \
libgl-dev \ libgl-dev \
libgtest-dev \
liblzma-dev \ liblzma-dev \
libmariadb-dev-compat \
libprotobuf-dev \ libprotobuf-dev \
libqt6multimedia6 \ libqt6multimedia6 \
libqt6sql6-mysql \
ninja-build \ ninja-build \
protobuf-compiler \ protobuf-compiler \
qt6-image-formats-plugins \ qt6-image-formats-plugins \
@ -25,5 +22,4 @@ RUN apt-get update && \
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,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-{qttools,qtsvg,qtmultimedia,qtwebsockets}-devel \
qt6-qtimageformats \ qt6-qtimageformats \
qt6-qtmultimedia-devel \
qt6-qtsvg-devel \
qt6-qttools-devel \
qt6-qtwebsockets-devel \
rpm-build \ rpm-build \
xz-devel \ xz-devel \
zlib-devel \ zlib-devel \
&& dnf clean all && 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-{qttools,qtsvg,qtmultimedia,qtwebsockets}-devel \
qt6-qtimageformats \ qt6-qtimageformats \
qt6-qtmultimedia-devel \
qt6-qtsvg-devel \
qt6-qttools-devel \
qt6-qtwebsockets-devel \
rpm-build \ rpm-build \
xz-devel \ xz-devel \
zlib-devel \ zlib-devel \
&& dnf clean all && dnf clean all \
&& rm -rf /var/cache/dnf

View file

@ -1,14 +1,13 @@
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 \
&& apt-get install -y --no-install-recommends \
ccache \ ccache \
clang-format \
cmake \ cmake \
file \ file \
g++ \ g++ \
git \
libmariadb-dev-compat \ libmariadb-dev-compat \
libprotobuf-dev \ libprotobuf-dev \
libqt6sql6-mysql \ libqt6sql6-mysql \
@ -17,5 +16,4 @@ RUN apt-get update && \
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,20 +1,18 @@
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 \
&& apt-get install -y --no-install-recommends \
ccache \ ccache \
clang-format \
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 \
libqt6sql6-mysql \
ninja-build \ ninja-build \
protobuf-compiler \ protobuf-compiler \
qt6-image-formats-plugins \ qt6-image-formats-plugins \
@ -24,5 +22,4 @@ RUN apt-get update && \
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,21 +1,18 @@
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++ \
git \
libgl-dev \ libgl-dev \
libgtest-dev \
liblzma-dev \ liblzma-dev \
libmariadb-dev-compat \
libprotobuf-dev \ libprotobuf-dev \
libqt6multimedia6 \ libqt6multimedia6 \
libqt6sql6-mysql \
ninja-build \ ninja-build \
protobuf-compiler \ protobuf-compiler \
qt6-image-formats-plugins \ qt6-image-formats-plugins \
@ -25,5 +22,4 @@ RUN apt-get update && \
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/*