Spaces:
Runtime error
Runtime error
File size: 573 Bytes
ba34418 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # استخدام بيئة بايثون مستقرة
FROM python:3.10
# تثبيت أدوات النظام الضرورية للصوت
RUN apt-get update && apt-get install -y \
ffmpeg \
portaudio19-dev \
git \
&& rm -rf /var/lib/apt/lists/*
# تحميل محرك Applio
RUN git clone https://github.com/IAHispano/Applio /app
WORKDIR /app
# تثبيت المكتبات البرمجية
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir torchfcpe resampy pypresence regex
# تشغيل الأداة
CMD ["python", "app.py"]
|