Mercurial > code > home > repos > homeauto
view lib/patchablegraph/Dockerfile @ 1742:1c1b38b145f8
rm custom cpp fingerprint driver that's under the wrong name 'desk'
author | drewp@bigasterisk.com |
---|---|
date | Fri, 01 Sep 2023 17:15:25 -0700 |
parents | 94610b5263e4 |
children |
line wrap: on
line source
FROM bang6:5000/base_x86 WORKDIR /opt COPY browser_test_requirements.txt ./ RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r browser_test_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?v2' COPY ./patchablegraph.py ./patchsource.py ./setup.py __init__.py patchablegraph/ RUN pip3 install patchablegraph/ COPY browser_test.py ./ EXPOSE 8021 CMD [ "python3", "browser_test.py" ]