fix(Dockerfile): install libglm-dev to satisfy meson glm dependency

meson failed with a runtime dependency error
"""
4J.Render/meson.build:4:7: ERROR: Dependency "glm" not found, tried pkgconfig and cmake
"""
add libglm-dev so meson can find glm

Signed-off-by: ViniciusCruzMoura <contato.cruz.moura@gmail.com>
This commit is contained in:
ViniciusCruzMoura 2026-04-04 16:20:45 -04:00 committed by Tropical
parent 1e94adb190
commit 223541b009

View file

@ -13,6 +13,7 @@ RUN apt-get update \
ninja-build \
libsdl2-dev \
libgl-dev \
libglm-dev \
libglu1-mesa-dev \
libpthread-stubs0-dev \
&& update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-15 100 \