view service/rfid_pn532_py/Dockerfile.pyfreefare.pi @ 1328:f372887aca73

add common imports to __init__.py Ignore-this: c19d0e57990318b04cb64fce5e5e2cad darcs-hash:6b36d52f52280990c92ff4c5c361fed6465d752d
author drewp <drewp@bigasterisk.com>
date Tue, 23 Apr 2019 02:10:55 -0700
parents db0534d5e264
children
line wrap: on
line source

FROM bang6:5000/base_pi

WORKDIR /opt

RUN apt-get install -y python-clang-5.0 libclang-5.0-dev libnfc5 libfreefare0 libnfc-dev libfreefare-dev 
RUN pip install git+https://github.com/drewp/ctypeslib.git@enable-modules-flag

COPY build_ctypes_modules.sh ./

CMD ["/bin/sh", "/opt/build_ctypes_modules.sh"]