Mercurial > code > home > repos > homeauto
view service/collector/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 | 53d7168bbe4c |
children | 4ff365595ca2 |
line wrap: on
line source
FROM bang6:5000/base_x86 WORKDIR /opt RUN apt-get install -y vim COPY requirements.txt ./ RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -Ur requirements.txt # not sure why this doesn't work from inside requirements.txt RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -U 'https://github.com/drewp/cyclone/archive/python3.zip' COPY stubs ./stubs COPY *.py req* *.ini ./ EXPOSE 9072 CMD [ "python3", "./sse_collector.py" ]