mirror of
https://github.com/nikdoof/aaisp2mqtt.git
synced 2025-12-21 22:59:25 +00:00
10 lines
180 B
Docker
10 lines
180 B
Docker
FROM python:3.8-alpine
|
|
|
|
COPY requirements.txt /app/
|
|
COPY aaisp-to-mqtt.py /app/
|
|
WORKDIR /app
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
CMD ["/usr/bin/python", "/app/aaisp-to-mqtt.py"]
|