Spaces:
Runtime error
Runtime error
File size: 378 Bytes
5292442 76301bb 5292442 76301bb 5292442 7e44035 76301bb 7e44035 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
COPY .streamlit/config.toml .streamlit/config.toml
EXPOSE 8501
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0", "--server.headless=true", "--server.enableCORS=false", "--server.enableXsrfProtection=false"]
|