From 49814f98a2eb5864268f746338a8b9f1ae00b1b2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 22:11:02 +0000 Subject: [PATCH] chore(deps): update python docker tag --- internal/test/integration/components/elasticsearch/Dockerfile | 2 +- internal/test/integration/components/pythonawsclient/Dockerfile | 2 +- internal/test/integration/components/pythongraphql/Dockerfile | 2 +- internal/test/integration/components/pythongrpc/Dockerfile | 2 +- internal/test/integration/components/pythongrpc/Dockerfile_srv | 2 +- internal/test/integration/components/pythonkafka/Dockerfile | 2 +- internal/test/integration/components/pythonmongo/Dockerfile | 2 +- internal/test/integration/components/pythonredis/Dockerfile | 2 +- .../test/integration/components/pythonselfserver/Dockerfile | 2 +- internal/test/integration/components/pythonserver/Dockerfile | 2 +- .../test/integration/components/pythonserver/Dockerfile_7773 | 2 +- internal/test/integration/components/pythonserver/Dockerfile_sh | 2 +- .../test/integration/components/pythonserver/Dockerfile_tls | 2 +- internal/test/integration/components/pythonsql/Dockerfile | 2 +- internal/test/integration/components/pythonsql/Dockerfile_mysql | 2 +- internal/test/integration/components/pythonsql/Dockerfile_ssl | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/internal/test/integration/components/elasticsearch/Dockerfile b/internal/test/integration/components/elasticsearch/Dockerfile index de7048704..dedbd9643 100644 --- a/internal/test/integration/components/elasticsearch/Dockerfile +++ b/internal/test/integration/components/elasticsearch/Dockerfile @@ -1,5 +1,5 @@ # Dockerfile that will build a container that runs python with FastAPI and uvicorn on port 8080 -FROM python:3.12@sha256:3466e9a530f0226fc09fbc479bde2387fd773f760749612e94d8696fe1aa5877 +FROM python:3.14@sha256:edf6433343f65f94707985869aeaafe8beadaeaee11c4bc02068fca52dce28dd EXPOSE 8080 RUN apt update RUN pip install fastapi uvicorn requests diff --git a/internal/test/integration/components/pythonawsclient/Dockerfile b/internal/test/integration/components/pythonawsclient/Dockerfile index eebc90688..6564913b4 100644 --- a/internal/test/integration/components/pythonawsclient/Dockerfile +++ b/internal/test/integration/components/pythonawsclient/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12@sha256:de96c54f25e2d69597a72bd3309d723110e59586845c5675c8cb83afb808af18 +FROM python:3.14@sha256:edf6433343f65f94707985869aeaafe8beadaeaee11c4bc02068fca52dce28dd EXPOSE 8080 RUN pip install boto3 fastapi uvicorn COPY main.py /main.py diff --git a/internal/test/integration/components/pythongraphql/Dockerfile b/internal/test/integration/components/pythongraphql/Dockerfile index bc3dcffd3..4f638e38a 100644 --- a/internal/test/integration/components/pythongraphql/Dockerfile +++ b/internal/test/integration/components/pythongraphql/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12@sha256:de96c54f25e2d69597a72bd3309d723110e59586845c5675c8cb83afb808af18 +FROM python:3.14@sha256:edf6433343f65f94707985869aeaafe8beadaeaee11c4bc02068fca52dce28dd EXPOSE 8080 RUN pip install ariadne fastapi uvicorn COPY main.py /main.py diff --git a/internal/test/integration/components/pythongrpc/Dockerfile b/internal/test/integration/components/pythongrpc/Dockerfile index e7367cb20..f526bdcc0 100644 --- a/internal/test/integration/components/pythongrpc/Dockerfile +++ b/internal/test/integration/components/pythongrpc/Dockerfile @@ -1,5 +1,5 @@ # Dockerfile that will build a container that runs python with FastAPI and uvicorn on port 8080 -FROM python:3.12@sha256:de96c54f25e2d69597a72bd3309d723110e59586845c5675c8cb83afb808af18 +FROM python:3.14@sha256:edf6433343f65f94707985869aeaafe8beadaeaee11c4bc02068fca52dce28dd EXPOSE 8080 RUN pip install fastapi uvicorn grpcio grpcio_tools requests COPY main.py /main.py diff --git a/internal/test/integration/components/pythongrpc/Dockerfile_srv b/internal/test/integration/components/pythongrpc/Dockerfile_srv index b6a765d4a..3f5714661 100644 --- a/internal/test/integration/components/pythongrpc/Dockerfile_srv +++ b/internal/test/integration/components/pythongrpc/Dockerfile_srv @@ -1,5 +1,5 @@ # Dockerfile that will build a container that runs python with FastAPI and uvicorn on port 8080 -FROM python:3.12@sha256:de96c54f25e2d69597a72bd3309d723110e59586845c5675c8cb83afb808af18 +FROM python:3.14@sha256:edf6433343f65f94707985869aeaafe8beadaeaee11c4bc02068fca52dce28dd EXPOSE 50051 RUN pip install grpcio grpcio_tools COPY route_guide_server.py /route_guide_server.py diff --git a/internal/test/integration/components/pythonkafka/Dockerfile b/internal/test/integration/components/pythonkafka/Dockerfile index 1990f47f4..a37890bbc 100644 --- a/internal/test/integration/components/pythonkafka/Dockerfile +++ b/internal/test/integration/components/pythonkafka/Dockerfile @@ -1,5 +1,5 @@ # Dockerfile that will build a container that runs python -FROM python:3.11@sha256:8455ff32cbe4c6ad6328c07d845444c01889628549718e448104555e1e631563 +FROM python:3.14@sha256:edf6433343f65f94707985869aeaafe8beadaeaee11c4bc02068fca52dce28dd EXPOSE 8080 RUN apt update RUN pip install kafka-python diff --git a/internal/test/integration/components/pythonmongo/Dockerfile b/internal/test/integration/components/pythonmongo/Dockerfile index 7eb936949..e5fe6c512 100644 --- a/internal/test/integration/components/pythonmongo/Dockerfile +++ b/internal/test/integration/components/pythonmongo/Dockerfile @@ -1,5 +1,5 @@ # Dockerfile that will build a container that runs python with FastAPI and uvicorn on port 8080 -FROM python:3.12@sha256:de96c54f25e2d69597a72bd3309d723110e59586845c5675c8cb83afb808af18 +FROM python:3.14@sha256:edf6433343f65f94707985869aeaafe8beadaeaee11c4bc02068fca52dce28dd EXPOSE 8080 RUN pip install fastapi uvicorn pymongo COPY main.py /main.py diff --git a/internal/test/integration/components/pythonredis/Dockerfile b/internal/test/integration/components/pythonredis/Dockerfile index 7d7e6f145..cc54a7c80 100644 --- a/internal/test/integration/components/pythonredis/Dockerfile +++ b/internal/test/integration/components/pythonredis/Dockerfile @@ -1,5 +1,5 @@ # Dockerfile that will build a container that runs python with FastAPI and uvicorn on port 8080 -FROM python:3.12@sha256:de96c54f25e2d69597a72bd3309d723110e59586845c5675c8cb83afb808af18 +FROM python:3.14@sha256:edf6433343f65f94707985869aeaafe8beadaeaee11c4bc02068fca52dce28dd EXPOSE 8080 RUN pip install fastapi uvicorn redis COPY main.py /main.py diff --git a/internal/test/integration/components/pythonselfserver/Dockerfile b/internal/test/integration/components/pythonselfserver/Dockerfile index 66a60aad6..5f19f44bc 100644 --- a/internal/test/integration/components/pythonselfserver/Dockerfile +++ b/internal/test/integration/components/pythonselfserver/Dockerfile @@ -1,5 +1,5 @@ # Dockerfile that will build a container that runs python flask 7771 -FROM python:3.11.6-slim@sha256:cc758519481092eb5a4a5ab0c1b303e288880d59afc601958d19e95b300bc86b +FROM python:3.14.0-slim@sha256:0aecac02dc3d4c5dbb024b753af084cafe41f5416e02193f1ce345d671ec966e EXPOSE 7771 7772 7773 7774 RUN pip install flask gunicorn requests diff --git a/internal/test/integration/components/pythonserver/Dockerfile b/internal/test/integration/components/pythonserver/Dockerfile index de20fc87e..a7b21890e 100644 --- a/internal/test/integration/components/pythonserver/Dockerfile +++ b/internal/test/integration/components/pythonserver/Dockerfile @@ -1,5 +1,5 @@ # Dockerfile that will build a container that runs python flask with gunicorn on port 7770 -FROM python:3.11.6-slim@sha256:cc758519481092eb5a4a5ab0c1b303e288880d59afc601958d19e95b300bc86b +FROM python:3.14.0-slim@sha256:0aecac02dc3d4c5dbb024b753af084cafe41f5416e02193f1ce345d671ec966e EXPOSE 7770 RUN pip install flask gunicorn requests # Alternative: RUN pip install flask uwsgi diff --git a/internal/test/integration/components/pythonserver/Dockerfile_7773 b/internal/test/integration/components/pythonserver/Dockerfile_7773 index 3cbd473ce..cd274438b 100644 --- a/internal/test/integration/components/pythonserver/Dockerfile_7773 +++ b/internal/test/integration/components/pythonserver/Dockerfile_7773 @@ -1,5 +1,5 @@ # Dockerfile that will build a container that runs python flask with gunicorn on port 7770 -FROM python:3.11.6-slim@sha256:cc758519481092eb5a4a5ab0c1b303e288880d59afc601958d19e95b300bc86b +FROM python:3.14.0-slim@sha256:0aecac02dc3d4c5dbb024b753af084cafe41f5416e02193f1ce345d671ec966e EXPOSE 7773 RUN pip install flask gunicorn requests # Alternative: RUN pip install flask uwsgi diff --git a/internal/test/integration/components/pythonserver/Dockerfile_sh b/internal/test/integration/components/pythonserver/Dockerfile_sh index 958d6d790..5d0dc608c 100644 --- a/internal/test/integration/components/pythonserver/Dockerfile_sh +++ b/internal/test/integration/components/pythonserver/Dockerfile_sh @@ -1,5 +1,5 @@ # Dockerfile that will build a container that runs python flask with gunicorn on port 7770 -FROM python:3.11.6-slim@sha256:cc758519481092eb5a4a5ab0c1b303e288880d59afc601958d19e95b300bc86b +FROM python:3.14.0-slim@sha256:0aecac02dc3d4c5dbb024b753af084cafe41f5416e02193f1ce345d671ec966e EXPOSE 7770 RUN pip install flask gunicorn requests # Alternative: RUN pip install flask uwsgi diff --git a/internal/test/integration/components/pythonserver/Dockerfile_tls b/internal/test/integration/components/pythonserver/Dockerfile_tls index 80de3f61b..d4b269864 100644 --- a/internal/test/integration/components/pythonserver/Dockerfile_tls +++ b/internal/test/integration/components/pythonserver/Dockerfile_tls @@ -1,5 +1,5 @@ # Dockerfile that will build a container that runs python flask with gunicorn on port 8380 -FROM python:3.11.6-slim@sha256:cc758519481092eb5a4a5ab0c1b303e288880d59afc601958d19e95b300bc86b +FROM python:3.14.0-slim@sha256:0aecac02dc3d4c5dbb024b753af084cafe41f5416e02193f1ce345d671ec966e EXPOSE 8380 RUN pip install flask gunicorn requests # Alternative: RUN pip install flask uwsgi diff --git a/internal/test/integration/components/pythonsql/Dockerfile b/internal/test/integration/components/pythonsql/Dockerfile index b377ac99e..4b0fd5095 100644 --- a/internal/test/integration/components/pythonsql/Dockerfile +++ b/internal/test/integration/components/pythonsql/Dockerfile @@ -1,5 +1,5 @@ # Dockerfile that will build a container that runs python with FastAPI and uvicorn on port 8080 -FROM python:3.12@sha256:de96c54f25e2d69597a72bd3309d723110e59586845c5675c8cb83afb808af18 +FROM python:3.14@sha256:edf6433343f65f94707985869aeaafe8beadaeaee11c4bc02068fca52dce28dd EXPOSE 8080 RUN apt update RUN apt install -y libpq-dev diff --git a/internal/test/integration/components/pythonsql/Dockerfile_mysql b/internal/test/integration/components/pythonsql/Dockerfile_mysql index 1452e6dbe..e245223a9 100644 --- a/internal/test/integration/components/pythonsql/Dockerfile_mysql +++ b/internal/test/integration/components/pythonsql/Dockerfile_mysql @@ -1,5 +1,5 @@ # Dockerfile that will build a container that runs python with FastAPI and uvicorn on port 8080 -FROM python:3.12@sha256:de96c54f25e2d69597a72bd3309d723110e59586845c5675c8cb83afb808af18 +FROM python:3.14@sha256:edf6433343f65f94707985869aeaafe8beadaeaee11c4bc02068fca52dce28dd EXPOSE 8080 RUN apt update RUN pip install fastapi uvicorn mysql-connector-python diff --git a/internal/test/integration/components/pythonsql/Dockerfile_ssl b/internal/test/integration/components/pythonsql/Dockerfile_ssl index c2214d3ab..ae84f0e76 100644 --- a/internal/test/integration/components/pythonsql/Dockerfile_ssl +++ b/internal/test/integration/components/pythonsql/Dockerfile_ssl @@ -1,5 +1,5 @@ # Dockerfile that will build a container that runs python with FastAPI and uvicorn on port 8080 -FROM python:3.12@sha256:de96c54f25e2d69597a72bd3309d723110e59586845c5675c8cb83afb808af18 +FROM python:3.14@sha256:edf6433343f65f94707985869aeaafe8beadaeaee11c4bc02068fca52dce28dd EXPOSE 8080 RUN apt update RUN apt install -y libpq-dev