OCR_API / Dockerfile
AdityaAKUMAR's picture
Create Dockerfile
45a8e31 verified
Raw
History Blame Contribute Delete
428 Bytes
FROM python:3.11-slim
# System dependencies for OpenCV and DeepFace
RUN apt-get update && apt-get install -y --no-install-recommends \
libglib2.0-0 \
libsm6 \
libxext6 \
libxrender1 \
libgl1 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]