Spaces:
Sleeping
Sleeping
File size: 1,027 Bytes
4c1fc4e a1398e2 | 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 | # Use the official Python 3.10 slim image
FROM python:3.10-slim
# Create a user to avoid running as root (required by Hugging Face Spaces security guidelines)
RUN useradd -m -u 1000 user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
# Install system libraries necessary for OpenCV and EasyOCR
RUN apt-get update && apt-get install -y \
libgl1 \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
# Copy the requirements file into the container
COPY --chown=user requirements.txt .
# Install dependencies (running as the new user)
USER user
RUN pip install --no-cache-dir --user -r requirements.txt
# Copy the rest of the application code
COPY --chown=user . .
# Expose port 7860 (Hugging Face Spaces default for Docker)
EXPOSE 7860
# Command to run the application with CORS disabled for Hugging Face iframe support
CMD ["streamlit", "run", "app.py", "--server.port", "7860", "--server.address", "0.0.0.0", "--server.enableCORS", "false", "--server.enableXsrfProtection", "false"]
|