FROM python:3.9 WORKDIR /code COPY . . RUN pip install --no-cache-dir -r requirements.txt # إنشاء المجلدات عشان الصلاحيات RUN mkdir -p logs videos avatars thumbnails encrypted watermarked RUN chmod -R 777 /code CMD ["python", "app.py"]