Spaces:
Sleeping
Sleeping
File size: 700 Bytes
16c970a 77d4891 16c970a 77d4891 16c970a 53e151f |
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 |
# FROM python:3.9
# WORKDIR /code
# COPY ./requirements.txt /code/requirements.txt
# RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# COPY . /code
# CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
# Utiliser une image Python officielle
FROM python:3.9-slim
# Installer les dépendances système nécessaires
RUN apt-get update && apt-get install -y \
ffmpeg \
libsm6 \
libxext6 \
libgl1-mesa-glx \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /code
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |