Mercurial > code > home > repos > homeauto
view service/collector/Dockerfile @ 462:7ec5945752b7
some old Measurement and Locator edits
Ignore-this: 188ecdf63f49b7a58f99a5961c6c23a6
author | drewp@bigasterisk.com |
---|---|
date | Sat, 20 Apr 2019 23:35:46 -0700 |
parents | 17a556ddc5ac |
children | 7fd9fa5d33aa |
line wrap: on
line source
FROM bang6:5000/base_x86 WORKDIR /opt RUN apt-get install -y vim COPY requirements.txt ./ RUN pip3 install -Ur requirements.txt # not sure why this doesn't work from inside requirements.txt RUN pip3 install -U 'https://github.com/drewp/cyclone/archive/python3.zip' RUN touch /usr/local/lib/python3.6/dist-packages/greplin/__init__.py COPY stubs ./stubs COPY twisted_sse_demo ./twisted_sse_demo COPY *.py req* *.ini ./ EXPOSE 9072 CMD [ "python3", "./sse_collector.py" ]