File size: 710 Bytes
209df98 2bcf518 1782d54 7dc558f 1782d54 209df98 7257851 209df98 08e9fd5 209df98 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | FROM python:3.10-slim
WORKDIR /code
# Системные зависимости для OpenCV
RUN apt-get update && apt-get install -y \
libglib2.0-0 \
libsm6 \
libxext6 \
libxrender1 \
libgomp1 \
libxcb1 \
libgl1 \
&& rm -rf /var/lib/apt/lists/*
COPY ./requirements.txt /code/requirements.txt
# Устанавливаем зависимости, заменяем opencv-python на headless
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r /code/requirements.txt && \
pip uninstall -y opencv-python && \
pip install --no-cache-dir opencv-python-headless
COPY . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |