ORC / Dockerfile
mike23415's picture
Update Dockerfile
fa66a7a verified
raw
history blame contribute delete
468 Bytes
FROM python:3.10-slim
# Install system dependencies for OpenCV
RUN apt-get update && apt-get install -y \
libxcb1 \
libxcb-render0 \
libxcb-shm0 \
libxcb-xfixes0 \
libxcb-shape0 \
libglib2.0-0 \
libsm6 \
libxext6 \
libxrender1 \
libgomp1 \
libgl1 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]