Restructure project for Docker: move app to src/, add Helm chart and Fleet config

This commit is contained in:
eka
2026-03-01 10:32:26 +05:00
parent b8b822e578
commit 649ec54886
17 changed files with 240 additions and 61 deletions

View File

@@ -4,12 +4,12 @@ WORKDIR /app
RUN pip install --no-cache-dir flask==3.1.3 jinja2==3.1.6 werkzeug==3.1.6
COPY . .
COPY src /app
ENV FLASK_APP=app.py
ENV FLASK_RUN_HOST=0.0.0.0
ENV FLASK_RUN_PORT=5000
ENV FLASK_RUN_PORT=5002
EXPOSE 5000
EXPOSE 5002
CMD ["python", "app.py"]