prototipo-1-rag / Dockerfile
Pecximenes's picture
Adding v1 of rag-agent
853a071
raw
history blame
240 Bytes
FROM python:3.8-slim
ENV APP_HOME=/app
WORKDIR ${APP_HOME}
COPY requirements.txt ./
COPY ./agente ./
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["streamlit", "run", "interface/chatbot.py", "--server.port=7860"]