File size: 262 Bytes
c9780ab
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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"]