Spaces:
Sleeping
Sleeping
File size: 846 Bytes
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 30 31 |
# 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"] |