update lib.

This commit is contained in:
luocai
2025-04-14 13:06:23 +08:00
parent 09a746511d
commit 261616a8c9
2 changed files with 12 additions and 11 deletions

View File

@ -1,6 +1,6 @@
FROM registry.cn-shenzhen.aliyuncs.com/amass_toolset/ubuntu_dev:24.04
ENV QT_VERSION=6.8.2
ENV QT_VERSION=6.9.0
RUN cd /root \
&& apt update \
@ -8,7 +8,7 @@ RUN cd /root \
&& apt install -y libavcodec-dev libavformat-dev libavutil-dev libswscale-dev libavfilter-dev libavdevice-dev \
&& apt clean \
&& rm -fr /var/lib/apt/lists/* /tmp/* /var/tmp/* \
&& wget https://download.qt.io/official_releases/qt/6.8/${QT_VERSION}/single/qt-everywhere-src-${QT_VERSION}.tar.xz \
&& wget https://download.qt.io/official_releases/qt/6.9/${QT_VERSION}/single/qt-everywhere-src-${QT_VERSION}.tar.xz \
&& tar -xvf qt-everywhere-src-${QT_VERSION}.tar.xz > /dev/null \
&& cd ./qt-everywhere-src-${QT_VERSION} \
&& ./configure -prefix /opt/Qt/${QT_VERSION}/gcc_64 -opensource -debug-and-release -confirm-license -nomake examples -nomake tests -skip qtwebengine -skip qtcoap -skip qtopcua \