Spaces:
Sleeping
Sleeping
File size: 635 Bytes
175d2d9 4659aa5 175d2d9 4659aa5 175d2d9 4659aa5 175d2d9 4659aa5 175d2d9 4659aa5 175d2d9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # استخدام نسخة تحتوي على المكتبات مثبتة مسبقاً لتوفير الوقت
FROM ghcr.io/abetlen/llama-cpp-python:latest
# تحديث النظام وتثبيت المتطلبات الأساسية
RUN apt-get update && apt-get install -y python3-pip
WORKDIR /code
# نسخ ملف المتطلبات وتثبيته بسرعة
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir -r /code/requirements.txt
# نسخ باقي ملفات السيرفر
COPY . .
# فتح المنفذ المطلوب
EXPOSE 7860
# تشغيل السيرفر مباشرة
CMD ["python3", "app.py"] |