Skip to content

Commit faa0e2f

Browse files
chore(deps): update python docker tag
1 parent 30ede70 commit faa0e2f

File tree

16 files changed

+16
-16
lines changed

16 files changed

+16
-16
lines changed

internal/test/integration/components/elasticsearch/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dockerfile that will build a container that runs python with FastAPI and uvicorn on port 8080
2-
FROM python:3.12@sha256:3466e9a530f0226fc09fbc479bde2387fd773f760749612e94d8696fe1aa5877
2+
FROM python:3.14@sha256:6942ebef735aad5f708ef9c5e750cbe37dbc7751cee35c140e33764e34843ab9
33
EXPOSE 8080
44
RUN apt update
55
RUN pip install fastapi uvicorn requests

internal/test/integration/components/pythonawsclient/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12@sha256:de96c54f25e2d69597a72bd3309d723110e59586845c5675c8cb83afb808af18
1+
FROM python:3.14@sha256:6942ebef735aad5f708ef9c5e750cbe37dbc7751cee35c140e33764e34843ab9
22
EXPOSE 8080
33
RUN pip install boto3 fastapi uvicorn
44
COPY main.py /main.py

internal/test/integration/components/pythongraphql/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12@sha256:de96c54f25e2d69597a72bd3309d723110e59586845c5675c8cb83afb808af18
1+
FROM python:3.14@sha256:6942ebef735aad5f708ef9c5e750cbe37dbc7751cee35c140e33764e34843ab9
22
EXPOSE 8080
33
RUN pip install ariadne fastapi uvicorn
44
COPY main.py /main.py

internal/test/integration/components/pythongrpc/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dockerfile that will build a container that runs python with FastAPI and uvicorn on port 8080
2-
FROM python:3.12@sha256:de96c54f25e2d69597a72bd3309d723110e59586845c5675c8cb83afb808af18
2+
FROM python:3.14@sha256:6942ebef735aad5f708ef9c5e750cbe37dbc7751cee35c140e33764e34843ab9
33
EXPOSE 8080
44
RUN pip install fastapi uvicorn grpcio grpcio_tools requests
55
COPY main.py /main.py

internal/test/integration/components/pythongrpc/Dockerfile_srv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dockerfile that will build a container that runs python with FastAPI and uvicorn on port 8080
2-
FROM python:3.12@sha256:de96c54f25e2d69597a72bd3309d723110e59586845c5675c8cb83afb808af18
2+
FROM python:3.14@sha256:6942ebef735aad5f708ef9c5e750cbe37dbc7751cee35c140e33764e34843ab9
33
EXPOSE 50051
44
RUN pip install grpcio grpcio_tools
55
COPY route_guide_server.py /route_guide_server.py

internal/test/integration/components/pythonkafka/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dockerfile that will build a container that runs python
2-
FROM python:3.11@sha256:8455ff32cbe4c6ad6328c07d845444c01889628549718e448104555e1e631563
2+
FROM python:3.14@sha256:6942ebef735aad5f708ef9c5e750cbe37dbc7751cee35c140e33764e34843ab9
33
EXPOSE 8080
44
RUN apt update
55
RUN pip install kafka-python

internal/test/integration/components/pythonmongo/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dockerfile that will build a container that runs python with FastAPI and uvicorn on port 8080
2-
FROM python:3.12@sha256:de96c54f25e2d69597a72bd3309d723110e59586845c5675c8cb83afb808af18
2+
FROM python:3.14@sha256:6942ebef735aad5f708ef9c5e750cbe37dbc7751cee35c140e33764e34843ab9
33
EXPOSE 8080
44
RUN pip install fastapi uvicorn pymongo
55
COPY main.py /main.py

internal/test/integration/components/pythonredis/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dockerfile that will build a container that runs python with FastAPI and uvicorn on port 8080
2-
FROM python:3.12@sha256:de96c54f25e2d69597a72bd3309d723110e59586845c5675c8cb83afb808af18
2+
FROM python:3.14@sha256:6942ebef735aad5f708ef9c5e750cbe37dbc7751cee35c140e33764e34843ab9
33
EXPOSE 8080
44
RUN pip install fastapi uvicorn redis
55
COPY main.py /main.py

internal/test/integration/components/pythonselfserver/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dockerfile that will build a container that runs python flask 7771
2-
FROM python:3.11.6-slim@sha256:cc758519481092eb5a4a5ab0c1b303e288880d59afc601958d19e95b300bc86b
2+
FROM python:3.14.0-slim@sha256:0aecac02dc3d4c5dbb024b753af084cafe41f5416e02193f1ce345d671ec966e
33
EXPOSE 7771 7772 7773 7774
44
RUN pip install flask gunicorn requests
55

internal/test/integration/components/pythonserver/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dockerfile that will build a container that runs python flask with gunicorn on port 7770
2-
FROM python:3.11.6-slim@sha256:cc758519481092eb5a4a5ab0c1b303e288880d59afc601958d19e95b300bc86b
2+
FROM python:3.14.0-slim@sha256:0aecac02dc3d4c5dbb024b753af084cafe41f5416e02193f1ce345d671ec966e
33
EXPOSE 7770
44
RUN pip install flask gunicorn requests
55
# Alternative: RUN pip install flask uwsgi

0 commit comments

Comments
 (0)