1
0
mirror of https://github.com/daniviga/bite.git synced 2024-11-23 13:26:14 +01:00
bite/docker/simulator/Dockerfile
Daniele Viganò 8e71d64f8f
Renaming to BITE (#15)
* Renaming, again

* Update README.md
2020-06-17 23:30:00 +02:00

8 lines
178 B
Docker

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