From cf426fdabbcb65b31378b40b574920246db963e2 Mon Sep 17 00:00:00 2001 From: Simon L Date: Thu, 15 Jun 2023 16:45:16 +0200 Subject: [PATCH] fix janus not finding luajson Signed-off-by: Simon L --- Containers/talk/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Containers/talk/Dockerfile b/Containers/talk/Dockerfile index efbc0781..c5222d52 100644 --- a/Containers/talk/Dockerfile +++ b/Containers/talk/Dockerfile @@ -23,19 +23,19 @@ RUN set -ex; \ shadow \ util-linux \ build-base \ - lua5.4-dev \ - luarocks5.4; \ + lua5.3-dev \ + luarocks5.3; \ useradd --system talk; \ - luarocks-5.4 install luajson; \ - luarocks-5.4 install ansicolors; \ + luarocks-5.3 install luajson; \ + luarocks-5.3 install ansicolors; \ rename -v ".jcfg.sample" ".jcfg" /etc/janus/*.sample; \ apk del --no-cache \ wget \ shadow \ util-linux \ build-base \ - lua5.4-dev \ - luarocks5.4; \ + lua5.3-dev \ + luarocks5.3; \ \ # Give root a random password echo "root:$(openssl rand -base64 12)" | chpasswd; \