mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-28 17:43:54 -07:00
19 lines
413 B
Docker
19 lines
413 B
Docker
FROM debian:12
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
ccache \
|
|
cmake \
|
|
file \
|
|
g++ \
|
|
libmariadb-dev-compat \
|
|
libprotobuf-dev \
|
|
libqt6sql6-mysql \
|
|
ninja-build \
|
|
protobuf-compiler \
|
|
qt6-tools-dev \
|
|
qt6-tools-dev-tools \
|
|
qt6-websockets-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|