From 14d485da009d804374d9688929007ed8dc245329 Mon Sep 17 00:00:00 2001 From: db1234719 Date: Thu, 13 Nov 2025 17:54:02 +0000 Subject: [PATCH] it had a bug that it would not find usr/lib/nginx i made the modules dynamic so it work --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index fd7c402..0c42f2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,9 +19,9 @@ RUN curl -fSL https://nginx.org/download/nginx-$NGINX_VERSION.tar.gz -o nginx.ta --http-log-path=/var/log/nginx/access.log \ --pid-path=/var/run/nginx.pid \ --lock-path=/var/run/nginx.lock \ - --with-http_ssl_module \ - --with-http_v2_module \ - --with-http_gzip_static_module \ + --with-http_ssl_module=dynamic \ + --with-http_v2_module=dynamic \ + --with-http_gzip_static_module=dynamic \ && make && make install # --- Stage 2: runtime ---