From cfb9f88d0b8f2daadeadf908f7c63868b782aa45 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 13 May 2026 21:44:43 +0000 Subject: [PATCH] Update nginx Docker tag to v1.31.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eadba3f..486b8c5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,6 @@ FROM python:3.14.5 AS build COPY src /app RUN python /app/nginx_config.py /app/sources.txt > /app/nginx.conf -FROM nginx:1.30.0 +FROM nginx:1.31.0 COPY --from=build /app/nginx.conf /etc/nginx/nginx.conf