mirror of
https://github.com/nikdoof/aaisp2mqtt.git
synced 2025-12-13 09:42:20 +00:00
10 lines
171 B
Docker
10 lines
171 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 ["python", "/app/aaisp-to-mqtt.py"]
|