brain / Dockerfile
mohamedalix546's picture
Create Dockerfile
6b21c20 verified
raw
history blame contribute delete
269 Bytes
FROM python:3.10-slim
COPY . /app
WORKDIR /app
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
# تشغيل التطبيق على المنفذ 7860 (الافتراضي في Spaces)
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]