This is an automated email from the ASF dual-hosted git repository.
kichan pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/trafficserver-ingress-controller.git
The following commit(s) were added to refs/heads/master by this push:
new cf2ce0e Update luajit symlink to new version (#315)
cf2ce0e is described below
commit cf2ce0e6ba98f1899812fccbd2479758666b8d07
Author: Kit Chan <[email protected]>
AuthorDate: Sun Nov 16 14:29:39 2025 -0800
Update luajit symlink to new version (#315)
---
Dockerfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Dockerfile b/Dockerfile
index ef2fe19..39def0a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -59,14 +59,14 @@ RUN sed -i "s/TS_DAEMON_ARGS=\"\"/TS_DAEMON_ARGS=\"
--bind_stdout \/opt\/ats\/va
RUN apk add --no-cache
--repository=https://dl-cdn.alpinelinux.org/alpine/edge/main
luajit=2.1_p20240815-r1
# symlink for luajit
-RUN ln -sf /usr/lib/libluajit-5.1.so.2.1.0 /usr/lib/libluajit-5.1.so
+RUN ln -sf /usr/lib/libluajit-5.1.so.2.1.1723681758 /usr/lib/libluajit-5.1.so
# luasocket
RUN wget
https://github.com/lunarmodules/luasocket/archive/refs/tags/v3.0.0.tar.gz \
&& tar zxf v3.0.0.tar.gz \
&& cd luasocket-3.0.0 \
&& sed -i "s/LDFLAGS_linux=-O -shared -fpic -o/LDFLAGS_linux=-O -shared
-fpic -L\/usr\/lib -lluajit-5.1 -o/" src/makefile \
- && ln -sf /usr/lib/libluajit-5.1.so.2.1.0 /usr/lib/libluajit-5.1.so \
+ && ln -sf /usr/lib/libluajit-5.1.so.2.1.1723681758 /usr/lib/libluajit-5.1.so
\
&& mkdir -p /usr/include/lua \
&& ln -sf /usr/include/luajit-2.1 /usr/include/lua/5.1 \
&& make \