CoolFace
Apppublic

iffsuleman/urdu-coversational-chatbot

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
Dockerfile21 linesDownload Raw Back to root
1FROM python:3.12-slim2 3WORKDIR /app4 5# Install build tools and Git6RUN apt-get update && apt-get install -y \7    build-essential \8    curl \9    git \10    && rm -rf /var/lib/apt/lists/*11 12# Copy files13COPY requirements.txt ./14COPY src/ ./src/15 16# Install dependencies17RUN pip install --upgrade pip18RUN pip install -r requirements.txt19 20# Default command for Streamlit21CMD ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"]