Mercurial > code > home > repos > homeauto
annotate service/rfid_pn532_py/Dockerfile.pi @ 404:19ef0ac8f7f7
build more of libfreefare
Ignore-this: efb50f50a9cc9de6d8ce068cd391a6fc
author | drewp@bigasterisk.com |
---|---|
date | Sun, 10 Mar 2019 04:02:59 -0700 |
parents | |
children | 91162a54553c |
rev | line source |
---|---|
404 | 1 FROM bang6:5000/base_pi |
2 | |
3 | |
4 | |
5 | |
6 WORKDIR /opt | |
7 RUN apt-get install -y libnfc5 libfreefare0 libnfc-dev libfreefare-dev | |
8 RUN apt-get install -y python3-nose2 | |
9 COPY pyfreefare-build-pi ./pyfreefare-build | |
10 | |
11 COPY requirements.txt . | |
12 RUN pip install -r requirements.txt | |
13 | |
14 COPY *.py *.html ./ | |
15 | |
16 ENV PYTHONPATH=/opt/pyfreefare-build | |
17 EXPOSE 10012 | |
18 |