1
0
mirror of https://github.com/daniviga/bite.git synced 2024-11-27 07:16:12 +01:00
bite/docker/simulator/Dockerfile

8 lines
184 B
Docker
Raw Normal View History

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