We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bc173d commit 7ff2097Copy full SHA for 7ff2097
deploy/src/Dockerfile
@@ -0,0 +1,11 @@
1
+FROM python:3.10-slim-buster
2
+
3
+WORKDIR /dynamic-routing
4
5
+COPY deploy/src/requirements.txt requirements.txt
6
7
+RUN pip install --no-cache-dir --upgrade -r requirements.txt
8
9
+COPY src src
10
11
+CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "8000"]
0 commit comments