Init Commit

This commit is contained in:
2026-02-13 00:30:44 +03:30
commit f2fe2843b2
8 changed files with 760 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.12-slim
WORKDIR /app
COPY . .
RUN pip install -r requirement.txt
EXPOSE 1600
CMD [ "gunicorn", "main:app", "--bind", "0.0.0.0:1600" ]