From 7e7ae8c86d01ccd8f8e9f5e738dbf51d2cd45e9b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 15 Apr 2026 05:24:46 +0000 Subject: [PATCH] Update nginx Docker tag to v1.30.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3252ac3..8c78d6b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,6 @@ FROM python:3.14.4 AS build COPY src /app RUN python /app/nginx_config.py /app/sources.txt > /app/nginx.conf -FROM nginx:1.29.8 +FROM nginx:1.30.0 COPY --from=build /app/nginx.conf /etc/nginx/nginx.conf