mirror of
https://github.com/opencv/opencv.git
synced 2025-01-10 14:19:03 +08:00
14 lines
285 B
Docker
14 lines
285 B
Docker
|
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
|