Initial commit: inberlin apartment monitor with autopilot

This commit is contained in:
Aron Petau 2025-12-08 14:44:59 +01:00
commit bf9d7f1371
9 changed files with 4900 additions and 0 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM mcr.microsoft.com/playwright/python:v1.56.0-jammy
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application
COPY monitor.py .
# Create data directory
RUN mkdir -p /data && chmod 777 /data
CMD ["python", "-u", "monitor.py"]