ARC / Dockerfile
ARASCA's picture
Upload 3 files
c9780ab verified
raw
history blame contribute delete
262 Bytes
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"]