cameracv/libs/opencv/modules/videoio/misc/plugin_gstreamer/Dockerfile

14 lines
309 B
Docker
Raw Normal View History

2023-05-18 21:39:43 +03:00
FROM ubuntu:18.04
RUN apt-get update && apt-get --no-install-recommends 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