Spaces:
Runtime error
Runtime error
File size: 844 Bytes
8d77e95 23635a4 e8c5da0 8d77e95 1ad9fe0 e8c5da0 8d77e95 6476d51 70a274e 925daa7 8d77e95 d70c2e1 33314f5 8d77e95 70a274e 23635a4 8d77e95 70a274e 925daa7 8d77e95 f46a676 de63807 8d77e95 70a274e 925daa7 8d77e95 70a274e | 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 33 34 35 36 37 | # Dockerfile optimized for Hugging Face Space
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
curl \
libglib2.0-0 \
libsm6 \
libxext6 \
libxrender1 \
libffi-dev \
libssl-dev \
libstdc++6 && \
rm -rf /var/lib/apt/lists/*
# Copy requirements
COPY requirements.txt .
# Upgrade pip and install
RUN pip install --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
# Copy source code
COPY src/ ./src
# Expose Streamlit port
EXPOSE 8501
# Healthcheck
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health || exit 1
# Entry point
ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0", "--server.enableXsrfProtection=false"] |