From 6362018d78e84395ce384613f8fec976387cfbea Mon Sep 17 00:00:00 2001 From: MihailRis Date: Fri, 14 Jun 2024 03:41:39 +0300 Subject: [PATCH] update Dockerfile (EnTT installation) --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Dockerfile b/Dockerfile index ad2fce9f..47209682 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,6 +25,13 @@ RUN apt-get update && apt-get install --no-install-recommends -y \ ca-certificates \ && rm -rf /var/lib/apt/lists/* +RUN git clone https://github.com/skypjack/entt.git && \ + cd entt/build && \ + cmake -DCMAKE_BUILD_TYPE=Release .. && \ + make install && \ + cd .. && rm -rf entt + + # CMake missing LUA_INCLUDE_DIR and LUA_LIBRARIES fix: RUN ln -s /usr/lib/x86_64-linux-gnu/libluajit-5.1.a /usr/lib/x86_64-linux-gnu/liblua5.1.a \ && ln -s /usr/include/luajit-2.1 /usr/include/lua