Initial commit

This commit is contained in:
2026-07-06 06:53:19 +00:00
commit ae1f0477a2
13 changed files with 80 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM python:latest
WORKDIR /myapp
COPY requirements.txt .
RUN python requirements.txt
CMD ["python", "app.py"]