mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
285 B
14 lines
285 B
6 years ago
|
FROM ubuntu:18.04
|
||
|
|
||
|
RUN apt-get update && apt-get install -y \
|
||
|
libgstreamer-plugins-base1.0-dev \
|
||
|
libgstreamer-plugins-good1.0-dev \
|
||
|
libgstreamer1.0-dev \
|
||
|
cmake \
|
||
|
g++ \
|
||
|
ninja-build \
|
||
|
&& \
|
||
|
rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
WORKDIR /tmp
|