SurfGO-deep-research / Dockerfile
AnesKAM's picture
Create Dockerfile
56accc8 verified
raw
history blame contribute delete
351 Bytes
# استخدام نسخة خفيفة من بايثون
FROM python:3.9-slim
# إنشاء مجلد العمل
WORKDIR /app
# نسخ الملفات
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Hugging Face Spaces تعمل على بورت 7860
EXPOSE 7860
# تشغيل السيرفر
CMD ["python", "app.py"]