]> git.feebdaed.xyz Git - 0xmirror/mitmproxy.git/commitdiff
Build docker images with trixie (#7851)
authorMaximilian Hils <git@maximilianhils.com>
Sun, 24 Aug 2025 17:33:30 +0000 (19:33 +0200)
committerGitHub <noreply@github.com>
Sun, 24 Aug 2025 17:33:30 +0000 (17:33 +0000)
build docker images with trixie

CHANGELOG.md
release/docker/Dockerfile

index 8155d65a9192708651a3dd83acc57e25e31ef418..cd8365b67de8c8a8bfe177d2759d3b2effa94365 100644 (file)
@@ -7,6 +7,8 @@
 
 ## Unreleased: mitmproxy next
 
+- Docker images are now build with Debian Trixie.
+  ([#7851](https://github.com/mitmproxy/mitmproxy/pull/7851), @mhils)
 - Fix mitmweb auth cookie always using the default `web_port` option.
   ([#7827](https://github.com/mitmproxy/mitmproxy/pull/7827), @sujaldev)
 - fix: missing content-length header in curl export
index 4dd003d1791a8111b2cf51f7a0716040eb899f3c..93761d36cacf6548ac8196776998cec64eb61a38 100644 (file)
@@ -1,9 +1,9 @@
-FROM python:3.13-bookworm AS wheelbuilder
+FROM python:3.13-trixie AS wheelbuilder
 
 COPY mitmproxy-*-py3-none-any.whl /wheels/
 RUN pip install wheel && pip wheel --wheel-dir /wheels /wheels/*.whl
 
-FROM python:3.13-slim-bookworm
+FROM python:3.13-slim-trixie
 
 RUN useradd -mU mitmproxy
 RUN apt-get update \