Spaces:
Runtime error
Runtime error
| FROM python:3.10-slim-buster | |
| WORKDIR /app | |
| # تثبيت зависимости системы | |
| RUN apt-get update && apt-get install -y libglib2.0-0 | |
| COPY requirements.txt requirements.txt | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY . . | |
| RUN playwright install chromium | |
| EXPOSE 8501 | |
| HEALTHCHECK CMD curl --fail http://localhost:8501/_sthealth || exit 1 | |
| CMD ["streamlit", "run", "--server.port=8501", "--server.headless=true", "app.py"] |