Standalone app for Q5 deployment

هذا الالتزام موجود في:
2026-07-28 13:31:34 +03:00
التزام 79c2b0d2ce
5 ملفات معدلة مع 206 إضافات و0 حذوفات

15
Dockerfile Normal file
عرض الملف

@@ -0,0 +1,15 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY monitor.py .
COPY dashboard.html .
COPY start.sh .
RUN chmod +x start.sh
EXPOSE 8080
CMD ["./start.sh"]