Skip to content

Commit fdfeb8d

Browse files
committed
Dockerfile: move cmake to build container
This is used for building OpenCV, so not a required package for downstream.
1 parent 9e408f0 commit fdfeb8d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ apt-get -y install --no-install-recommends \
2929
ccache \
3030
# GCC compiler etc.
3131
build-essential \
32-
# build requirement for OpenCV
33-
cmake \
3432
# build requirement for OpenCV/FORCE
3533
pkgconf \
3634
# switching UID/GID inside container (for permissions)
@@ -80,6 +78,8 @@ export DEBIAN_FRONTEND=noninteractive && \
8078
apt-get -y update && apt-get -y upgrade && \
8179
apt-get install -y --no-install-recommends \
8280
ccache \
81+
# build requirement for OpenCV
82+
cmake \
8383
ninja-build \
8484
python3-pip
8585

0 commit comments

Comments
 (0)