Genisi / Dockerfile
AnesKAM's picture
Update Dockerfile
63add60 verified
Raw
History Blame Contribute Delete
256 Bytes
FROM python:3.10-slim
WORKDIR /app
# تثبيت المتطلبات
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# نسخ الملفات
COPY . .
# تشغيل التطبيق مباشرة مع Python
CMD ["python", "app.py"]