Spaces:
Sleeping
Sleeping
File size: 560 Bytes
d8afa61 1911fac 68e7ebb d8afa61 68e7ebb d8afa61 68e7ebb d8afa61 68e7ebb d8afa61 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
FROM python:3.9
# Install system dependencies (libGL for OpenCV and ffmpeg)
RUN apt-get update && apt-get install -y \
libgl1-mesa-glx \
ffmpeg
# Create a user
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
# Copy and install Python dependencies
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
# Copy the application files
COPY --chown=user . /app
# Run the application
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|