Mercurial > code > home > repos > homeauto
view service/bluetoothButtons/Dockerfile.pi @ 1724:8d2c75a93d82
use pdm (these are new deps)
author | drewp@bigasterisk.com |
---|---|
date | Tue, 20 Jun 2023 23:13:09 -0700 |
parents | 8f5a16a55f64 |
children |
line wrap: on
line source
FROM bang6:5000/base_pi WORKDIR /opt COPY requirements.txt ./ RUN pip3 install -r requirements.txt ADD https://projects.bigasterisk.com/rdfdb/more.tgz ./ RUN tar xvzf more.tgz COPY *.py ./ EXPOSE 11012 CMD [ "python3", "./bluetooth_buttons.py" ]