Spaces:
Sleeping
Sleeping
File size: 877 Bytes
9c9f92a 5789df5 9ed5ee0 9c9f92a 9ed5ee0 5789df5 9ed5ee0 9c9f92a 5789df5 9c9f92a 5789df5 9ed5ee0 9c9f92a 9ed5ee0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
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"]
|