Spaces:
Sleeping
Sleeping
FROM python:3.13.5-slim | |
# Writable HOME so Streamlit won’t try '/.streamlit' | |
ENV HOME=/app | |
WORKDIR /app | |
ENV STREAMLIT_BROWSER_GATHER_USAGE_STATS=false | |
ENV XDG_CACHE_HOME=/app/.cache | |
ENV HF_HOME=/app/.cache/huggingface | |
RUN apt-get update && apt-get install -y --no-install-recommends \ | |
build-essential curl git \ | |
&& rm -rf /var/lib/apt/lists/* | |
COPY requirements.txt ./requirements.txt | |
RUN pip install --no-cache-dir -r requirements.txt | |
# Copy app code | |
COPY src/ ./src/ | |
# ✅ Copy your data files to the WORKDIR too | |
COPY traps.csv ./traps.csv | |
COPY counts.csv ./counts.csv | |
# Ensure writable dirs for Streamlit & caches | |
RUN mkdir -p /app/.streamlit /app/.cache && chmod -R 777 /app | |
EXPOSE 8501 | |
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health | |
ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"] | |