Create KUMA stateless service

This commit is contained in:
“Naeel”
2026-08-26 12:40:33 +03:00
commit 749c96e1aa
5 changed files with 219 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.12-slim
WORKDIR /app
COPY src/requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY src/app.py .
EXPOSE 5000
CMD ["python3", "app.py"]