From 0097abaed0d9e5de55873e054f8be2c8b14d8801 Mon Sep 17 00:00:00 2001 From: Simon L Date: Sat, 17 Jun 2023 19:21:57 +0200 Subject: [PATCH] Apparently wget is required for lua since alpine 3.18 Signed-off-by: Simon L --- Containers/talk/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Containers/talk/Dockerfile b/Containers/talk/Dockerfile index 9b3e90b3..5e65af04 100644 --- a/Containers/talk/Dockerfile +++ b/Containers/talk/Dockerfile @@ -22,6 +22,7 @@ RUN set -ex; \ shadow \ util-linux \ build-base \ + wget \ lua5.3-dev \ luarocks5.3; \ useradd --system talk; \ @@ -32,6 +33,7 @@ RUN set -ex; \ shadow \ util-linux \ build-base \ + wget \ lua5.3-dev \ luarocks5.3; \ \