a1 / Dockerfile
Hocine356899's picture
Update Dockerfile
3889706 verified
raw
history blame contribute delete
449 Bytes
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"]