Spaces:
Sleeping
Sleeping
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"] |