mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-05 20:39:59 -08:00
* attempts to fix the problem * add test to show the problem * fix workflow * move logger to cockatrice * more attempts * undo stuff * mark different libraries as gui * fix SC2145 * rename servatrice only build
22 lines
522 B
Docker
22 lines
522 B
Docker
FROM debian:11
|
|
|
|
RUN apt-get update && \
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
ccache \
|
|
clang-format \
|
|
cmake \
|
|
file \
|
|
g++ \
|
|
git \
|
|
libmariadb-dev-compat \
|
|
libprotobuf-dev \
|
|
libqt5sql5-mysql \
|
|
libqt5websockets5-dev \
|
|
ninja-build \
|
|
protobuf-compiler \
|
|
qttools5-dev \
|
|
qttools5-dev-tools \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|