Spaces:
Sleeping
Sleeping
File size: 825 Bytes
8960670 | 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 | # Use official Python 3.10 slim image
FROM python:3.10-slim
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
ENV PORT 7860
# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
libgl1 \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
# Create a non-root user (Hugging Face best practice)
RUN useradd -m -u 1000 user
WORKDIR /home/user/app
# Copy requirements first for better caching
COPY --chown=user:user requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the application code and assets
COPY --chown=user:user . .
# Ensure permissions are correct
RUN chmod -R 777 /home/user/app
# Switch to the non-root user
USER user
# Expose the app port
EXPOSE 7860
# Start the application
CMD ["python", "app.py"]
|