الملفات
ghaymah-exam-MohamedSaleh-SRE/q5-mithal-monitor/Dockerfile
root 05edcc3fce Q5
2026-07-27 03:14:09 +00:00

16 أسطر
233 B
Docker

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"