fffd / Dockerfile
TDN-M's picture
Update Dockerfile
37416a8 verified
raw
history blame
329 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . /app
# Install system dependencies for OpenCV and MediaPipe
RUN apt-get update && apt-get install -y \
libgl1-mesa-glx \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "app.py"]