I am trying to build a Docker container that can run Python OpenCV code in Raspbian 10.
FROM python:3.5-buster
RUN apt-get update
RUN apt-get install apt-utils -y
RUN apt-get install python-opencv -y
RUN apt-get install python3-opencv -y
COPY a.py /
CMD ["python3", "a.py"]
a.py is simply import cv2
When I run the container, I got the following errors.
Traceback (most recent call last):
File "a.py", line 1, in <module>
import cv2
ImportError: No module named 'cv2'