From f175e9b8974ae4edca8e76a7ce49d697bfc5177b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Sep 2025 07:21:57 +0000 Subject: [PATCH] chore(deps): update python:3.12 docker digest to 1cb6108 --- test/integration/components/pythongrpc/Dockerfile | 2 +- test/integration/components/pythongrpc/Dockerfile_srv | 2 +- test/integration/components/pythonmongo/Dockerfile | 2 +- test/integration/components/pythonredis/Dockerfile | 2 +- test/integration/components/pythonsql/Dockerfile | 2 +- test/integration/components/pythonsql/Dockerfile_mysql | 2 +- test/integration/components/pythonsql/Dockerfile_ssl | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/test/integration/components/pythongrpc/Dockerfile b/test/integration/components/pythongrpc/Dockerfile index c0beaf1bc..a5c31c43f 100644 --- a/test/integration/components/pythongrpc/Dockerfile +++ b/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:a5bbd10dc5f2d6e965e101eef58f2f15cc3be5802cad7a12897aa443839c4943 +FROM python:3.12@sha256:1cb6108b64a4caf2a862499bf90dc65703a08101e8bfb346a18c9d12c0ed5b7e EXPOSE 8080 RUN pip install fastapi uvicorn grpcio grpcio_tools COPY main.py /main.py diff --git a/test/integration/components/pythongrpc/Dockerfile_srv b/test/integration/components/pythongrpc/Dockerfile_srv index 87feb9b21..e4b486488 100644 --- a/test/integration/components/pythongrpc/Dockerfile_srv +++ b/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:a5bbd10dc5f2d6e965e101eef58f2f15cc3be5802cad7a12897aa443839c4943 +FROM python:3.12@sha256:1cb6108b64a4caf2a862499bf90dc65703a08101e8bfb346a18c9d12c0ed5b7e EXPOSE 50051 RUN pip install grpcio grpcio_tools COPY route_guide_server.py /route_guide_server.py diff --git a/test/integration/components/pythonmongo/Dockerfile b/test/integration/components/pythonmongo/Dockerfile index 1db31b660..f1451ce69 100644 --- a/test/integration/components/pythonmongo/Dockerfile +++ b/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:a5bbd10dc5f2d6e965e101eef58f2f15cc3be5802cad7a12897aa443839c4943 +FROM python:3.12@sha256:1cb6108b64a4caf2a862499bf90dc65703a08101e8bfb346a18c9d12c0ed5b7e EXPOSE 8080 RUN pip install fastapi uvicorn pymongo COPY main.py /main.py diff --git a/test/integration/components/pythonredis/Dockerfile b/test/integration/components/pythonredis/Dockerfile index f9fa1b9ec..8453c0099 100644 --- a/test/integration/components/pythonredis/Dockerfile +++ b/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:a5bbd10dc5f2d6e965e101eef58f2f15cc3be5802cad7a12897aa443839c4943 +FROM python:3.12@sha256:1cb6108b64a4caf2a862499bf90dc65703a08101e8bfb346a18c9d12c0ed5b7e EXPOSE 8080 RUN pip install fastapi uvicorn redis COPY main.py /main.py diff --git a/test/integration/components/pythonsql/Dockerfile b/test/integration/components/pythonsql/Dockerfile index d01e27514..1119de223 100644 --- a/test/integration/components/pythonsql/Dockerfile +++ b/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:a5bbd10dc5f2d6e965e101eef58f2f15cc3be5802cad7a12897aa443839c4943 +FROM python:3.12@sha256:1cb6108b64a4caf2a862499bf90dc65703a08101e8bfb346a18c9d12c0ed5b7e EXPOSE 8080 RUN apt update RUN apt install -y libpq-dev diff --git a/test/integration/components/pythonsql/Dockerfile_mysql b/test/integration/components/pythonsql/Dockerfile_mysql index 8092b7b8b..4e04550f6 100644 --- a/test/integration/components/pythonsql/Dockerfile_mysql +++ b/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:a5bbd10dc5f2d6e965e101eef58f2f15cc3be5802cad7a12897aa443839c4943 +FROM python:3.12@sha256:1cb6108b64a4caf2a862499bf90dc65703a08101e8bfb346a18c9d12c0ed5b7e EXPOSE 8080 RUN apt update RUN pip install fastapi uvicorn mysql-connector-python diff --git a/test/integration/components/pythonsql/Dockerfile_ssl b/test/integration/components/pythonsql/Dockerfile_ssl index 730efe97d..30da43661 100644 --- a/test/integration/components/pythonsql/Dockerfile_ssl +++ b/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:a5bbd10dc5f2d6e965e101eef58f2f15cc3be5802cad7a12897aa443839c4943 +FROM python:3.12@sha256:1cb6108b64a4caf2a862499bf90dc65703a08101e8bfb346a18c9d12c0ed5b7e EXPOSE 8080 RUN apt update RUN apt install -y libpq-dev