هذا الالتزام موجود في:
root
2026-07-27 03:14:09 +00:00
الأصل 436df1bd63
التزام 05edcc3fce
5 ملفات معدلة مع 546 إضافات و0 حذوفات

عرض الملف

@@ -0,0 +1,15 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN mv dashboard.html index.html
EXPOSE 8080
CMD sh -c "python3 monitor.py && python3 -m http.server 8080"