Space-Eva / Dockerfile
othmanezaid77's picture
Update Dockerfile
ee4b900 verified
raw
history blame contribute delete
363 Bytes
# القالب الجاهز اللي فيه كاع المكتبات مبنية
FROM ghcr.io/abetlen/llama-cpp-python:latest
# تثبيت المكتبات ديال التواصل
RUN pip install --no-cache-dir fastapi uvicorn huggingface_hub requests
WORKDIR /code
COPY . .
# تشغيل إيفا
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]