summaryrefslogtreecommitdiffstats
path: root/build_external/scenarios/aclk-testing/paho.Dockerfile
blob: 77a49e768358073c434e3cf0904d05195996aa2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM archlinux/base:latest

RUN pacman -Syyu --noconfirm 
RUN pacman --noconfirm --needed -S python-pip

RUN pip install paho-mqtt

RUN mkdir -p /opt/paho
COPY paho-inspection.py /opt/paho/

WORKDIR /opt/paho
CMD ["/usr/sbin/python", "paho-inspection.py"]