From b50b74ee4afb047e1ce7ac06e908f4a3ff4c780a Mon Sep 17 00:00:00 2001 From: Fedor Borshev <1592663+f213@users.noreply.github.com> Date: Tue, 30 Dec 2025 19:27:55 +0300 Subject: [PATCH] uwsgi version bump --- {{ cookiecutter.name }}/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{ cookiecutter.name }}/Dockerfile b/{{ cookiecutter.name }}/Dockerfile index ffe344f9..cc42fc8f 100644 --- a/{{ cookiecutter.name }}/Dockerfile +++ b/{{ cookiecutter.name }}/Dockerfile @@ -7,7 +7,7 @@ ARG PYTHON_VERSION=python-version-not-set # Compile custom uwsgi, cuz debian's one is weird # FROM python:${PYTHON_VERSION}-slim-bookworm AS uwsgi-compile -ENV _UWSGI_VERSION=2.0.29 +ENV _UWSGI_VERSION=2.0.31 RUN apt-get update && apt-get --no-install-recommends install -y build-essential wget && rm -rf /var/lib/apt/lists/* RUN wget --progress=dot:giga -O uwsgi-${_UWSGI_VERSION}.tar.gz https://github.com/unbit/uwsgi/archive/${_UWSGI_VERSION}.tar.gz \ && tar zxvf uwsgi-*.tar.gz \