File size: 1,002 Bytes
2c32434 371810f 2c32434 | 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 an official Python runtime as a parent image
FROM python:3.10-slim
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
ENV HF_HOME=/tmp/huggingface
ENV TF_ENABLE_ONEDNN_OPTS=0
# Set the working directory in the container
WORKDIR /app
# Install system dependencies for OpenCV and other tools
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 requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application code
COPY . .
# Create necessary directories and set permissions for HF Spaces
RUN mkdir -p uploads results encoder && chmod -R 777 uploads results encoder
# Expose the target port
EXPOSE 7860
# Run the application with Gunicorn
# Timeout is set to 0 to disable it, allowing long-running inference tasks
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--timeout", "0", "app:app"]
|