Mercurial > code > home > repos > homeauto
view service/reasoning/Dockerfile @ 1754:92999dfbf321 default tip
add shelly support
author | drewp@bigasterisk.com |
---|---|
date | Tue, 04 Jun 2024 13:03:43 -0700 |
parents | c8562ace4917 |
children |
line wrap: on
line source
FROM bang5:5000/base_x86 WORKDIR /opt COPY requirements.txt ./ RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r 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 *.n3 *.py *.html req* ./ COPY input ./input EXPOSE 9071 CMD [ "python3", "./reasoning.py","-irv" ]