Some checks failed
Build and Deploy / build-macos (push) Failing after 29s
Build and Deploy / build-windows (CLANG64) (push) Has been cancelled
Build and Deploy / package-dist (push) Has been cancelled
Build and Deploy / deploy-itch (push) Has been cancelled
Build and Deploy / deploy-gitea (push) Has been cancelled
Build and Deploy / build-linux (push) Has been cancelled
24 lines
457 B
Docker
24 lines
457 B
Docker
FROM debian:trixie
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
mingw-w64 \
|
|
cmake \
|
|
ninja-build \
|
|
git \
|
|
build-essential \
|
|
binutils \
|
|
pkg-config \
|
|
zip \
|
|
ccache \
|
|
npm \
|
|
nodejs \
|
|
meson \
|
|
libmimalloc-dev \
|
|
libbsd-dev \
|
|
gcc-mingw-w64-ucrt64 \
|
|
g++-mingw-w64-ucrt64 && \
|
|
rm -rf /var/lib/apt/lists/*
|