manga02 / Dockerfile
YOUKKASS's picture
Create Dockerfile
faf8802 verified
raw
history blame contribute delete
417 Bytes
FROM python:3.9-slim
# تحديث وتثبيت Tesseract OCR ومتطلباته
RUN apt-get update && apt-get install -y \
tesseract-ocr \
tesseract-ocr-eng \
libgl1 \
&& rm -rf /var/lib/apt/lists/*
# نسخ ملفات التطبيق
COPY . /app
WORKDIR /app
# تثبيت متطلبات Python
RUN pip install --no-cache-dir -r requirements.txt
# تشغيل التطبيق
CMD ["python", "app.py"]