fix: Dockerfile EnTT post-installation cleanup

This commit is contained in:
MihailRis 2024-06-14 03:44:21 +03:00
parent 6362018d78
commit b20ba185d4

View File

@ -25,11 +25,12 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
# Install EnTT
RUN git clone https://github.com/skypjack/entt.git && \
cd entt/build && \
cmake -DCMAKE_BUILD_TYPE=Release .. && \
make install && \
cd .. && rm -rf entt
cd ../.. && rm -rf entt
# CMake missing LUA_INCLUDE_DIR and LUA_LIBRARIES fix: