wohnbot/Dockerfile
Aron ce66fc1933 Fix Degewo auto-apply (Wohnungshelden iframe), update dependencies, cleanup for production
- Fix Degewo handler to work with Wohnungshelden iframe portal
- Update playwright to >=1.57.0
- Add proper form field selectors for Wohnungshelden
- Fix success status bug (was marking failed submissions as success)
- Clean up .env.example (remove real credentials)
- Update README with housing company support table
- Add BOTFATHER_COMMANDS.txt for easy bot setup
- Add copilot-instructions.md for development context
2025-12-09 11:30:17 +01:00

15 lines
305 B
Docker

FROM mcr.microsoft.com/playwright/python:v1.57.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"]