File size: 954 Bytes
e3482ba d6b1aa2 e3482ba | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | # ============================================
# G4F Docker Image
# ============================================
FROM python:3.11-slim
# معلومات المطور
LABEL maintainer="YourName"
LABEL description="G4F API Server - Free AI Chat"
# إعداد بيئة العمل
WORKDIR /app
# تحديث النظام وتثبيت المتطلبات
RUN apt-get update && \
apt-get install -y --no-install-recommends curl && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# نسخ المتطلبات أولاً (لتسريع البناء)
COPY requirements.txt .
# تثبيت المكتبات
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
# نسخ الكود
COPY . .
# المنفذ
EXPOSE 7860
# فحص الصحة
HEALTHCHECK --interval=30s --timeout=10s --retries=3 \
CMD curl -f http://localhost:8080/health || exit 1
# تشغيل التطبيق
CMD ["python", "app.py"]
|