Mercurial > code > home > repos > homeauto
comparison service/powerEagle/Dockerfile @ 1335:013af6808aca
update powereagle to py3, be a server with /stats/, save 'price' field
Ignore-this: 1b738295b503fb7409311ddd637b7a18
darcs-hash:8965d44bb93751bd5639768f8cd1defa15ab1dab
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Tue, 23 Apr 2019 03:57:55 -0700 |
parents | |
children | e8654a3bd1c7 |
comparison
equal
deleted
inserted
replaced
1334:73c2b13692b7 | 1335:013af6808aca |
---|---|
1 FROM bang6:5000/base_x86 | |
2 | |
3 WORKDIR /opt | |
4 | |
5 COPY requirements.txt ./ | |
6 | |
7 RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt | |
8 # not sure why this doesn't work from inside requirements.txt | |
9 RUN pip3 install -U 'https://github.com/drewp/cyclone/archive/python3.zip?v3' | |
10 | |
11 COPY *.py *.html ./ | |
12 | |
13 EXPOSE 10016 | |
14 | |
15 CMD [ "python3", "reader.py" ] |