File size: 882 Bytes
f751cec | 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 | # Use official Python slim image
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Create non-root user for security (required by HF Spaces)
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Set working directory for user
WORKDIR $HOME/app
# Copy requirements first for better caching
COPY --chown=user requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt gunicorn
# Copy application code
COPY --chown=user . .
# Create uploads directory with proper permissions
RUN mkdir -p uploads && chmod 755 uploads
# Expose port 7860 (Hugging Face Spaces default)
EXPOSE 7860
# Run with gunicorn for production
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--workers", "2", "--threads", "2", "app:app"]
|