Spaces:
Sleeping
Sleeping
# 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 \ | |
&& rm -rf /var/lib/apt/lists/* | |
# Définir le répertoire de travail | |
WORKDIR /code | |
# Copier les fichiers de dépendances | |
COPY requirements.txt . | |
# Installer les dépendances Python | |
RUN pip install --no-cache-dir -r requirements.txt | |
# Copier le reste du code | |
COPY . . | |
# Exposer le port | |
EXPOSE 7860 | |
# Commande pour démarrer l'application | |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |