CoolFace
Apppublic

Vizz17/context-aware-rag

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
Dockerfile.chatbot13 linesDownload Raw Back to docker
1FROM python:3.11-slim2 3WORKDIR /app4 5COPY requirements.txt .6RUN pip install --no-cache-dir streamlit requests7 8COPY chatbot/ ./chatbot/9 10EXPOSE 850111 12CMD ["streamlit", "run", "chatbot/app.py", "--server.port=8501", "--server.address=0.0.0.0"]13