CodeReviewEnv-Elite / Dockerfile
Krsnapriya's picture
Upload folder using huggingface_hub
aa466c2 verified
Raw
History Blame Contribute Delete
311 Bytes
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"]