Mehak-098/Intrusion-detection-system
0
1FROM python:3.102 3# Install system dependencies (ffmpeg for streamlink, libgl1 for OpenCV)4RUN apt-get update && apt-get install -y \5 ffmpeg \6 libgl1 \7 libglib2.0-0 \8 build-essential \9 && rm -rf /var/lib/apt/lists/*10 11# Set working directory12WORKDIR /app13 14# Install Python dependencies15COPY requirements.txt .16RUN pip install --no-cache-dir --upgrade pip17RUN pip install --no-cache-dir -r requirements.txt18 19# Copy application code and model20COPY . .21 22# Run the detection system23CMD ["python", "app.py"]24 