[build] Added configuration to allow building in container

This commit is contained in:
vperus 2026-02-21 01:58:11 +02:00
parent 00086c2ad9
commit 95f5321833
4 changed files with 62 additions and 0 deletions

View file

@ -0,0 +1,23 @@
FROM ubuntu:24.04
RUN apt-get update && \
apt install -y \
cmake \
build-essential \
pkg-config \
git \
libsdl2-dev \
libglew-dev \
libglm-dev \
libssl-dev \
zlib1g-dev \
libavformat-dev \
libavcodec-dev \
libswscale-dev \
libavutil-dev \
libstorm-dev && \
rm -rf /var/lib/apt/lists/*
COPY build-wowee.sh /
ENTRYPOINT ./build-wowee.sh