add git to dockerfile

meson failed in docker because git was not installed

now meson does build in docker and the game runs
This commit is contained in:
project516
2026-04-11 21:09:38 -05:00
parent 0b6f0481b6
commit de08a36021

View File

@@ -48,6 +48,7 @@ RUN apt-get update \
libpthread-stubs0-dev \
libssl-dev \
gcc-15 g++-15 \
git \
&& update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-15 100 \
&& update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-15 100 \
&& apt-get autoremove -y \