view service/tomatoWifi/Dockerfile @ 1221:05e9c01471a7

parse another version of 'unknown' Ignore-this: d489103112d86db63785dd9431283057 darcs-hash:2cfc4b1ea6ee2cfb4722f05ef26230945dd37fb0
author drewp <drewp@bigasterisk.com>
date Sat, 30 Mar 2019 16:56:47 -0700
parents afd19bf8b499
children
line wrap: on
line source

FROM bang6:5000/base_x86

WORKDIR /opt

RUN apt-get install -y libxml2-dev libxslt1-dev

COPY requirements.txt ./
RUN pip install -r requirements.txt

COPY *.py *.n3 *.json *.html ./

EXPOSE 9070

CMD [ "python", "tomatoWifi.py" ]