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.
28 lines
571 B
28 lines
571 B
ARG VER |
|
FROM ubuntu:$VER |
|
|
|
RUN \ |
|
apt-get update && \ |
|
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ |
|
pkg-config \ |
|
cmake \ |
|
g++ \ |
|
ninja-build \ |
|
&& \ |
|
rm -rf /var/lib/apt/lists/* |
|
|
|
RUN \ |
|
apt-get update && \ |
|
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ |
|
libgtk2.0-dev \ |
|
&& \ |
|
rm -rf /var/lib/apt/lists/* |
|
|
|
RUN \ |
|
apt-get update && \ |
|
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ |
|
libgtkglext1-dev \ |
|
&& \ |
|
rm -rf /var/lib/apt/lists/* |
|
|
|
WORKDIR /tmp
|
|
|