FROM python:3.12-slim WORKDIR /app RUN pip install --no-cache-dir aiohttp paho-mqtt COPY proxy.py . COPY ha_mqtt.py . COPY templates/ templates/ CMD ["python", "-u", "proxy.py"]