112 / Dockerfile
iq7se2's picture
Update Dockerfile
4199390 verified
raw
history blame contribute delete
448 Bytes
FROM python:3.9
# تثبيت مكتبات النظام الضرورية لـ OpenCV
RUN apt-get update && apt-get install -y \
libgl1-mesa-glx \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /code
# نسخ ملف المتطلبات وتثبيته
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
# تشغيل التطبيق
CMD ["python", "app.py"]