1
0
mirror of https://github.com/Adam-Ant/mqtt-dash synced 2024-07-31 08:36:10 +00:00
mqtt-dash/Dockerfile

13 lines
281 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 \
&& pip install paho-mqtt scapy \
&& mkdir dash \
&& ln -s /config/dash.cfg /dash/dash.cfg
ADD main.py /config
CMD ["python","/dash/main.py"]