From d699adb63bfac7684342cc66632df49d14220416 Mon Sep 17 00:00:00 2001 From: Thatsaphorn Atchariyaphap Date: Mon, 9 Jun 2025 11:05:51 +0200 Subject: [PATCH] Switch `Dockerfile-openresty` base to `openresty:latest` and replace Alpine with Debian dependencies. --- Dockerfile-openresty | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/Dockerfile-openresty b/Dockerfile-openresty index 4375705..aba9144 100644 --- a/Dockerfile-openresty +++ b/Dockerfile-openresty @@ -1,6 +1,11 @@ -FROM openresty/openresty +FROM openresty/openresty:latest -RUN apk add --no-cache git curl luarocks \ - && luarocks install lua-resty-openidc \ - && luarocks install lua-resty-session \ - && luarocks install lua-cjson +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + git \ + curl \ + luarocks && \ + luarocks install lua-resty-openidc && \ + luarocks install lua-resty-session && \ + luarocks install lua-cjson && \ + rm -rf /var/lib/apt/lists/*