view service/rdf_to_mqtt/Dockerfile @ 1539:8c410b493da4

more renaming, build updates Ignore-this: 94a0df55a1d8a74d90ec84bb7351d3ef darcs-hash:c75b289c837213f294a22de94cd86b0348d4123f
author drewp <drewp@bigasterisk.com>
date Mon, 10 Feb 2020 23:56:42 -0800
parents 7cc7700302c2
children 71eec31da919
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", "./rdf_to_mqtt.py" ]