File size: 819 Bytes
420fe76 c94c065 4b4fbc4 c94c065 420fe76 c94c065 420fe76 c94c065 420fe76 c94c065 420fe76 c94c065 | 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 | FROM python:3.11-slim
# Install system dependencies (needed for OpenCV/Pillow if your detector uses them)
USER root
RUN apt-get update && apt-get install -y \
libgl1 \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
# Setup non-root user
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
# Set working directory to user home
WORKDIR /home/user/app
# Copy requirements and install
COPY --chown=user:user requirements.txt .
RUN pip install --no-cache-dir --user -r requirements.txt
# Copy application files
COPY --chown=user:user . .
# Expose port 7860
EXPOSE 7860
# Run Streamlit with flags to bypass common HF proxy issues
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.enableCORS=false", "--server.enableXsrfProtection=false"] |