1
0
mirror of https://github.com/Adam-Ant/mqtt-dash synced 2024-07-11 07:56:11 +00:00
mqtt-dash/Dockerfile

12 lines
271 B
Docker
Raw Normal View History

2016-11-24 00:20:01 +00:00
FROM alpine:3.4
MAINTAINER "Adam Dodman <adam.dodman@gmx.com>"
RUN apk add --no-cache python py-pip \
&& pip install --upgrade pip \
2016-11-24 00:33:09 +00:00
&& pip install paho-mqtt scapy configparser \
&& mkdir dash
2016-11-24 00:20:01 +00:00
2016-11-24 00:29:56 +00:00
ADD main.py /dash/main.py
2016-11-24 00:20:01 +00:00
CMD ["python","/dash/main.py","-c","/config"]