Initial commit

This commit is contained in:
2025-03-04 09:56:17 +03:00
commit 09aa4fa083
14 changed files with 187 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM python:3.9
WORKDIR /app
COPY . .
RUN pip install fastapi uvicorn
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "6661"]