Spaces:
Build error
Build error
FROM python:3.10 | |
# Installer les dépendances système | |
RUN apt-get update && apt-get install -y \ | |
git \ | |
git-lfs \ | |
ffmpeg \ | |
libsm6 \ | |
libxext6 \ | |
cmake \ | |
rsync \ | |
libgl1-mesa-glx \ | |
&& rm -rf /var/lib/apt/lists/* \ | |
&& git lfs install | |
# Installer les dépendances Python | |
COPY requirements.txt /tmp/requirements.txt | |
RUN pip install --no-cache-dir pip==22.3.1 && \ | |
pip install --no-cache-dir \ | |
datasets \ | |
"huggingface_hub>=0.19" \ | |
"hf-transfer>=0.1.4" \ | |
"protobuf<4" \ | |
"click<8.1" \ | |
"pydantic~=1.0" | |
# Installer les dépendances spécifiques de l'application | |
RUN pip install --no-cache-dir -r /tmp/requirements.txt | |
# Définir le répertoire de travail | |
WORKDIR /home/user/app | |
# Copier le code de l'application | |
COPY . /home/user/app | |
# Définir l'utilisateur par défaut | |
RUN useradd -m -u 1000 user | |
# Définir l'utilisateur par défaut pour exécuter les commandes | |
USER user | |
# Exposer le port pour l'application | |
EXPOSE 7860 | |
# Commande pour lancer l'application | |
CMD ["python", "app.py"] | |