view service/mqtt_graph_bridge/Dockerfile @ 1419:24e29a15617c

partial style redo. standardize ns setup Ignore-this: 4b8bb9ecc023b9e42f301241fe1819cc darcs-hash:10803752665928343398b6845fdcfd3e3b33fb97
author drewp <drewp@bigasterisk.com>
date Sun, 04 Aug 2019 12:57:03 -0700
parents a29a55f3429c
children
line wrap: on
line source

FROM bang6:5000/base_x86

WORKDIR /opt

COPY requirements.txt ./
RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt
RUN pip3 install -U 'https://github.com/drewp/cyclone/archive/python3.zip?v3'

COPY *.py *.html *.css *.js ./

EXPOSE 10011:10011

CMD [ "python3", "./mqtt_graph_bridge.py" ]