8 lines
178 B
Docker
8 lines
178 B
Docker
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"]
|