skip to Main Content

How to build Opencv code in a docker file

I want to build and run a c++ opencv code using docker. Here is my dockerfile: FROM nvidia/cuda:11.5.0-cudnn8-runtime-ubuntu20.04 FROM ubuntu ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y g++ git wget cmake sudo RUN apt-get install -y build-essential cmake…

VIEW QUESTION
Back To Top
Search