Spaces:
Runtime error
Runtime error
File size: 311 Bytes
2692c5d 6e5766d aa466c2 6e5766d 2692c5d 6e5766d aa466c2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir pydantic numpy networkx requests streamlit
ENV PYTHONHASHSEED=0
ENV PYTHONPATH=/app
# Streamlit config for Hugging Face Spaces port binding
CMD ["streamlit", "run", "app.py", "--server.port", "7860", "--server.address", "0.0.0.0"]
|