MedhaCodes's picture
Update Dockerfile
7545e8c verified
raw
history blame contribute delete
489 Bytes
FROM python:3.10-slim
WORKDIR /app
# ✅ REQUIRED system libraries for OpenCV
RUN apt-get update && apt-get install -y \
build-essential \
libgl1 \
libglib2.0-0 \
libsm6 \
libxext6 \
libxrender1 \
&& rm -rf /var/lib/apt/lists/*
# Copy and install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy project files
COPY . .
EXPOSE 7860
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]