Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading