From 374e50bd1e174249527d3d2e9949795c41cf5e6c Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sat, 11 May 2024 21:41:56 +0300 Subject: [PATCH] Nginx: Update the image and use the slim variant. Removes some Nginx modules that I don't use (xslt, njs, geoip and image filter). --- nginx/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/Dockerfile b/nginx/Dockerfile index fc00163..09257f7 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/nginx:1.25.3-alpine +FROM docker.io/nginx:1.26.0-alpine-slim # hadolint ignore=DL3018 RUN rm -rf /etc/nginx/conf.d/* && \ chmod 777 /run && \ -- GitLab