add dockerfile

just messing
This commit is contained in:
2026-01-14 23:15:41 +00:00
commit 8b6683006a
+5
View File
@@ -0,0 +1,5 @@
FROM python:3.11-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "app.py"]