prototipo-1-rag / Dockerfile
Pecximenes's picture
Removing diretory and organazing files
94e320d
raw
history blame
230 Bytes
FROM python:3.8-slim
ENV APP_HOME=/app
WORKDIR ${APP_HOME}
COPY requirements.txt ./
COPY ./ ./
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["streamlit", "run", "interface/app.py", "--server.port=7860"]