From 20a647ab5abab15fcd3de7a9bcf9a7f2191b32ad Mon Sep 17 00:00:00 2001 From: "nise.moe" Date: Sat, 8 Jun 2024 14:53:54 +0200 Subject: [PATCH] Changed from openresty to base nginx --- nise-frontend/Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/nise-frontend/Dockerfile b/nise-frontend/Dockerfile index 5193ef6..8216513 100644 --- a/nise-frontend/Dockerfile +++ b/nise-frontend/Dockerfile @@ -1,10 +1,7 @@ -FROM openresty/openresty:focal +FROM nginx:1.27.0 RUN rm -rf /usr/share/nginx/html/* -RUN /usr/local/openresty/luajit/bin/luarocks install luaxml -RUN /usr/local/openresty/luajit/bin/luarocks install lua-resty-http - COPY dist/nise-frontend /usr/share/nginx/html COPY nginx.conf /etc/nginx/conf.d/default.conf