Files
aaisp2mqtt/Dockerfile
2020-05-04 10:38:44 +01:00

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"]