Initial commit: inberlin apartment monitor with autopilot
This commit is contained in:
commit
bf9d7f1371
9 changed files with 4900 additions and 0 deletions
15
Dockerfile
Normal file
15
Dockerfile
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue