الملفات
ghaymah-q5-app/Dockerfile
2026-07-28 13:31:34 +03:00

16 أسطر
224 B
Docker

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"]