1
0
mirror of https://github.com/daniviga/bite.git synced 2025-04-21 06:41:18 +02:00
bite/docker/simulator/Dockerfile

8 lines
184 B
Docker

FROM python:3.8-alpine
RUN pip3 install urllib3 paho-mqtt
COPY ./device_simulator.py /opt/freedcs/device_simulator.py
ENTRYPOINT ["python3"]
CMD ["/opt/freedcs/device_simulator.py"]