From 04598c9e5519bbef3da6df1c7f15e810b8aa4d01 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Thu, 23 Jun 2022 17:02:56 +0200 Subject: [PATCH] Docker: bump Qt to v5.15.5 --- Dockerfile.linux | 4 ++-- Dockerfile.windows | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.linux b/Dockerfile.linux index 69f5596..02ad2d4 100644 --- a/Dockerfile.linux +++ b/Dockerfile.linux @@ -25,7 +25,7 @@ RUN bash verify-packages.sh && \ dpkg -i --force-depends *.deb && \ rm -rf /deps /archives -# OpenSSL: Required for CMake, Qt 5.15.2, libwallet, Tor +# OpenSSL: Required for CMake, Qt 5.15, libwallet, Tor ENV OPENSSL_ROOT_DIR=/usr/local/openssl/ RUN git clone -b OpenSSL_1_1_1m --depth 1 https://github.com/openssl/openssl.git && \ cd openssl && \ @@ -73,7 +73,7 @@ RUN git clone -b 2.13.92 --depth 1 https://gitlab.freedesktop.org/fontconfig/fon make -j$THREADS install && \ rm -rf $(pwd) -ENV QT_VERSION=v5.15.4-lts-lgpl +ENV QT_VERSION=v5.15.5-lts-lgpl RUN git clone git://code.qt.io/qt/qt5.git -b ${QT_VERSION} --depth 1 && \ cd qt5 && \ git clone git://code.qt.io/qt/qtbase.git -b ${QT_VERSION} --depth 1 && \ diff --git a/Dockerfile.windows b/Dockerfile.windows index b2f7579..ca95f8b 100644 --- a/Dockerfile.windows +++ b/Dockerfile.windows @@ -1,7 +1,7 @@ FROM ubuntu:20.04 ARG THREADS=1 -ARG QT_VERSION=v5.15.4-lts-lgpl +ARG QT_VERSION=v5.15.5-lts-lgpl ENV SOURCE_DATE_EPOCH=1397818193 ENV DEBIAN_FRONTEND=noninteractive