From 82a5adde98ced1ba30a64bd5c13a66b190dce476 Mon Sep 17 00:00:00 2001 From: Alexandre DEVELY <12896316+alexandredevely@users.noreply.github.com> Date: Wed, 6 Nov 2024 17:32:06 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index ad1a519..6f4e567 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,11 @@ RUN apt-get update && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* +# this is a debug info +RUN ls -la /usr/local/openresty/luajit/lib/libluajit-5.1.so.2 && \ + md5sum /usr/local/openresty/luajit/lib/libluajit-5.1.so.2 + + # install lua libs RUN /usr/local/openresty/luajit/bin/luarocks install lua-resty-jwt && \ /usr/local/openresty/luajit/bin/luarocks install lua-resty-string && \