diff --git a/windows1809/base/Dockerfile b/windows1809/base/Dockerfile
index 58293c7f06437f5472eb0f5b1250846ae6eb80da..c66ffe1dacc5abfe7879302194efea1ca9d943e5 100644
--- a/windows1809/base/Dockerfile
+++ b/windows1809/base/Dockerfile
@@ -21,12 +21,12 @@ COPY Profile.ps1 C:/Users/ContainerAdministrator/Documents/WindowsPowerShell/Mic
 
 COPY qtifwsilent.qs C:/qtifwsilent.qs
 RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
-    (New-Object Net.WebClient).DownloadFile('https://download.qt.io/official_releases/qt/5.12/5.12.1/qt-opensource-windows-x86-5.12.1.exe', 'C:/qt.exe'); \
+    (New-Object Net.WebClient).DownloadFile('https://download.qt.io/official_releases/qt/5.12/5.12.4/qt-opensource-windows-x86-5.12.4.exe', 'C:/qt.exe'); \
     $env:QT_INSTALL_DIR = 'C:/Qt'; \
     Start-Process C:/qt.exe -NoNewWindow -Wait -ArgumentList '--verbose --script C:/qtifwsilent.qs'; \
     Remove-Item -Force C:/qtifwsilent.qs; \
     Remove-Item -Force C:/qt.exe; \
-    [Environment]::SetEnvironmentVariable('Qt5_DIR', 'C:/Qt/5.12.1/msvc2017_64', [EnvironmentVariableTarget]::Machine)
+    [Environment]::SetEnvironmentVariable('Qt5_DIR', 'C:/Qt/5.12.4/msvc2017_64', [EnvironmentVariableTarget]::Machine)
 
 RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
     (New-Object Net.WebClient).DownloadFile('https://www.baslerweb.com/fp-1551786641/media/downloads/software/pylon_software/Basler_pylon_5.2.0.13457.exe', 'C:/Basler_pylon_5.2.0.13457.exe'); \
diff --git a/windows1809/base/qtifwsilent.qs b/windows1809/base/qtifwsilent.qs
index 8f44afc04c373d23f970a0baf44f9699060bce38..a936410e4ed120ba3814423d0921dd1083d3f506 100644
--- a/windows1809/base/qtifwsilent.qs
+++ b/windows1809/base/qtifwsilent.qs
@@ -25,8 +25,8 @@ Controller.prototype.TargetDirectoryPageCallback = function() {
 Controller.prototype.ComponentSelectionPageCallback = function() {
     var widget = gui.currentPageWidget();
     widget.deselectAll();
-    widget.selectComponent("qt.qt5.5121.win64_msvc2017_64");
-    widget.selectComponent("qt.qt5.5121.qtcharts");
+    widget.selectComponent("qt.qt5.5124.win64_msvc2017_64");
+    widget.selectComponent("qt.qt5.5124.qtcharts");
     gui.clickButton(buttons.NextButton);
 }