0.14.1 initial dayglo

This commit is contained in:
2024-10-20 13:05:00 +11:00
parent b043cc5186
commit b5255e4996
12 changed files with 364 additions and 13 deletions
+21
View File
@@ -0,0 +1,21 @@
FROM python:3.9-slim
# Install dependencies
RUN apt-get update && apt-get install -y \
libopencv-dev \
python3-opencv \
&& rm -rf /var/lib/apt/lists/*
# Install Python packages
RUN pip install --no-cache-dir \
paho-mqtt \
requests \
numpy
# Copy the dayglo detector script
COPY dayglo_detector.py /app/dayglo_detector.py
WORKDIR /app
CMD ["python", "dayglo_detector.py"]