mirror of
https://github.com/daniviga/bite.git
synced 2024-11-23 13:26:14 +01:00
8 lines
184 B
Docker
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"]
|