Ansible role that deployes services on my runner machine
1FROM python:3.12-alpine 2RUN pip install --no-cache-dir paho-mqtt requests 3COPY manager.py /app/manager.py 4WORKDIR /app 5CMD ["python", "-u", "manager.py"] 6