SegVision / backend /Dockerfile
Indrajit Ari
Initial commit — SegVision Video Segmentation App
dbced4f
raw
history blame contribute delete
363 Bytes
FROM python:3.11-slim
WORKDIR /app
# System deps for OpenCV
RUN apt-get update && apt-get install -y --no-install-recommends \
libgl1 libglib2.0-0 ffmpeg \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]