1
0
mirror of https://github.com/Adam-Ant/mqtt-dash synced 2025-07-01 10:10:56 +00:00

Initial Commit

This commit is contained in:
Adam Dodman
2016-11-24 00:20:01 +00:00
commit 182e250bc9
4 changed files with 117 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM alpine:3.4
MAINTAINER "Adam Dodman <adam.dodman@gmx.com>"
RUN apk add --no-cache python py-pip \
&& pip install --upgrade pip \
&& pip install paho-mqtt scapy \
&& mkdir dash \
&& ln -s /config/dash.cfg /dash/dash.cfg
ADD main.py /config
CMD ["python","/dash/main.py"]