first commit

This commit is contained in:
2026-02-01 14:14:57 +05:30
commit 98e8eca000
3 changed files with 312 additions and 0 deletions

21
Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
FROM python:3.11-slim
# Install system deps for OpenCV + ffmpeg
RUN apt-get update && apt-get install -y \
ffmpeg \
libgl1 \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
# Install Python deps
RUN pip install --no-cache-dir \
opencv-python-headless \
numpy \
requests
WORKDIR /app
COPY desk_presence.py /app/desk_presence.py
CMD ["python", "/app/desk_presence.py"]