Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 770 Bytes

File metadata and controls

26 lines (17 loc) · 770 Bytes

LIQUID EDGE Docker builds

LIQUID EDGE Logo

These programs are a part of the system used for the LIQUID EDGE PRIN 2017 project demonstrator.

Build the container with Python 3.6 + OpenCV 4.5 + CUDA 11 + cuDNN 8.8.

$ docker build -t "python3.8-cuda11.7.1-opencv4.6" .

Enter inside the container writing in Terminal:

$ docker run -it --entrypoint /bin/bash python3.8-cuda11.7.1-opencv4.6

Set the path of cv2 inside the container writing inside the Dockefile:

$ RUN echo "import site" >> /etc/python3.8/sitecustomize.py
$ RUN echo 'site.addsitedir("/usr/local/lib/python3.8/site-packages/")' >> /etc/python3.8/sitecustomize.py

Note: place the libcudnn* DEB files in this folder before the build.