Dockerfile-release: add missing libwebp build/runtime dependency
The stb image backend (src/libs/image/CMakeLists.txt) does a pkg_check_modules(WebP REQUIRED IMPORTED_TARGET libwebp), but Dockerfile-release never installed libwebp-dev/libwebp, so the release image build failed at the cmake configure step with 'Package libwebp not found'. Added both the Alpine build-time (libwebp-dev) and runtime (libwebp) packages.
This commit is contained in:
@@ -22,6 +22,7 @@ ARG BUILD_PACKAGES=" \
|
|||||||
libpng-dev \
|
libpng-dev \
|
||||||
libtool \
|
libtool \
|
||||||
libvorbis-dev \
|
libvorbis-dev \
|
||||||
|
libwebp-dev \
|
||||||
make \
|
make \
|
||||||
onnxruntime-dev \
|
onnxruntime-dev \
|
||||||
openjpeg-dev \
|
openjpeg-dev \
|
||||||
@@ -162,6 +163,7 @@ ARG RUNTIME_PACKAGES=" \
|
|||||||
libpng \
|
libpng \
|
||||||
libpulse \
|
libpulse \
|
||||||
libvorbis \
|
libvorbis \
|
||||||
|
libwebp \
|
||||||
libssl3 \
|
libssl3 \
|
||||||
onnxruntime \
|
onnxruntime \
|
||||||
openjpeg \
|
openjpeg \
|
||||||
|
|||||||
Reference in New Issue
Block a user