addded services

This commit is contained in:
2026-07-15 13:29:08 +03:00
parent ec33cd5398
commit 9ebbb83bdb
105 changed files with 10833 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM python:3.9.6-alpine
ADD requirements.txt /requirements.txt
RUN pip install -r /requirements.txt
ADD src /app
WORKDIR /app
CMD ["flask", "run", "--host", "0.0.0.0"]