mirror of
https://github.com/opencv/opencv.git
synced 2024-11-30 14:25:59 +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
|