CoolFace
Apppublic

CGIAR/WEAIbot-2

sourceHugging Faceupdated 7d agoView on Hugging Face
0likes
Dockerfile20 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6    build-essential \7    curl \8    git \9    && rm -rf /var/lib/apt/lists/*10    11COPY requirements.txt .12RUN pip install --no-cache-dir -r requirements.txt13COPY . .14 15EXPOSE 850116 17HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health18 19ENTRYPOINT ["streamlit", "run", "app_web.py", "--server.port=8501", "--server.address=0.0.0.0",  "--server.enableXsrfProtection=false"]20