robocar-oak-camera/Dockerfile

28 lines
590 B
Docker
Raw Normal View History

2022-01-15 17:42:14 +00:00
FROM docker.io/library/python:3.9-slim
# Configure piwheels repo to use pre-compiled numpy wheels for arm
RUN echo -n "[global]\nextra-index-url=https://www.piwheels.org/simple\n" >> /etc/pip.conf
2022-01-17 22:09:25 +00:00
RUN apt-get update && apt-get install -y libusb-1.0-0 libgl1 libglib2.0-0
2022-01-15 17:42:14 +00:00
RUN pip3 install numpy
2022-01-17 22:09:25 +00:00
ADD requirements.txt requirements.txt
2022-01-15 17:42:14 +00:00
RUN pip3 install -r requirements.txt
2022-01-17 22:09:25 +00:00
ADD events events
ADD camera camera
ADD setup.cfg setup.cfg
ADD setup.py setup.py
2022-01-15 17:42:14 +00:00
ENV PYTHON_EGG_CACHE=/tmp/cache
2022-01-17 22:09:25 +00:00
RUN python3 setup.py install
2022-01-15 17:42:14 +00:00
WORKDIR /tmp
USER 1234
ENTRYPOINT ["/usr/local/bin/rc-oak-camera"]