File size: 256 Bytes
63add60
ed11556
fdb9461
ed11556
63add60
 
 
3fda6d0
63add60
 
ed11556
63add60
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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"]