File size: 351 Bytes
0f29736 298a8ad 4f5b910 0f29736 4ad524b 298a8ad cfcebe2 3a5ad04 0f29736 3a5ad04 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Streamlit config for Spaces
ENV STREAMLIT_SERVER_PORT=7860 \
STREAMLIT_SERVER_ADDRESS=0.0.0.0 \
STREAMLIT_SERVER_HEADLESS=true \
STREAMLIT_BROWSER_GATHERUSAGESTATS=false
EXPOSE 7860
CMD ["streamlit","run","app.py"]
|