This commit is contained in:
2025-03-04 10:09:53 +03:00
parent 3d03ffa2c4
commit f4fefa522a
13 changed files with 186 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM python:3.9
WORKDIR /app
COPY . .
RUN pip install flask
CMD ["python", "app.py"]