From 530eb15ee970ef11bea40508a1200fdef7f6ecd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20B=C3=A1lint=20Misius?= Date: Thu, 27 Oct 2022 15:52:05 +0200 Subject: [PATCH] Specify luarocks version in Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 53fccdc..83725b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM alpine:latest RUN apk add --no-cache lua5.3 openssl3 \ - && apk add --no-cache m4 lua5.3-dev musl-dev luarocks git gcc openssl3-dev make sudo bsd-compat-headers \ + && apk add --no-cache m4 lua5.3-dev musl-dev luarocks5.3 git gcc openssl3-dev make sudo bsd-compat-headers \ && for i in lunajson jnet http luafilesystem; do sudo -H luarocks-5.3 install $i; done \ - && apk del --no-cache m4 lua5.3-dev musl-dev luarocks git gcc openssl3-dev make sudo bsd-compat-headers + && apk del --no-cache m4 lua5.3-dev musl-dev luarocks5.3 git gcc openssl3-dev make sudo bsd-compat-headers WORKDIR /tptmp ADD . . EXPOSE 34403/tcp, 34406/tcp