first commit

This commit is contained in:
syed.shafin
2025-09-17 22:01:58 +06:00
commit cdf381192e
4 changed files with 191 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
ENTRYPOINT ["python", "main.py"]