853a071 7288353
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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/app.py", "--server.port=7860"]