fix: add missing FFmpeg development libraries for OpenCV integration
All checks were successful
Build Worker Base and Application Images / check-base-changes (push) Successful in 8s
Build Worker Base and Application Images / build-base (push) Successful in 7m22s
Build Worker Base and Application Images / build-docker (push) Successful in 4m45s
Build Worker Base and Application Images / deploy-stack (push) Successful in 44s

This commit is contained in:
Siwat Sirichai 2025-09-26 00:27:08 +07:00
parent 360a4ab890
commit 59e8448f0d

View file

@ -24,6 +24,14 @@ RUN apt-get update && apt-get install -y \
libvpx-dev \ libvpx-dev \
libmp3lame-dev \ libmp3lame-dev \
libv4l-dev \ libv4l-dev \
# FFmpeg development libraries for OpenCV integration
libavcodec-dev \
libavformat-dev \
libavutil-dev \
libavdevice-dev \
libavfilter-dev \
libswscale-dev \
libswresample-dev \
# TurboJPEG for fast JPEG encoding # TurboJPEG for fast JPEG encoding
libturbojpeg0-dev \ libturbojpeg0-dev \
# Python development # Python development