diff --git a/ubuntu18.04/base/Dockerfile b/ubuntu18.04/base/Dockerfile
index 74fb5af65951bdb3d3419689fb1ae6e60e3e1443..bbc6468e214a13867a0ab6e2923f8d6f77b2a9c1 100644
--- a/ubuntu18.04/base/Dockerfile
+++ b/ubuntu18.04/base/Dockerfile
@@ -84,13 +84,13 @@ RUN python3.7 -m pip --no-cache-dir install \
         psutil
 
 RUN cd /tmp && \
-    curl -sSLO https://cmake.org/files/v3.14/cmake-3.14.5.tar.gz && \
-    tar -xf cmake-3.14.5.tar.gz && \
-    cd cmake-3.14.5 && \
+    curl -sSLO https://cmake.org/files/v3.15/cmake-3.15.4.tar.gz && \
+    tar -xf cmake-3.15.4.tar.gz && \
+    cd cmake-3.15.4 && \
     ./configure --prefix=/usr/local && \
     make install -j$(nproc --all) && \
     cd .. && \
-    rm -rf cmake-3.14.5*
+    rm -rf cmake-3.15.4*
 
 COPY hdf5-1.10.2-no-trailing-attributes.patch /tmp
 RUN cd /tmp && \
diff --git a/windows1809/base/Dockerfile b/windows1809/base/Dockerfile
index 74b37055cdd50f4e1e14cef057f1133eb9aa5005..e888f882ae9ea57260e2c35af47414e410526342 100644
--- a/windows1809/base/Dockerfile
+++ b/windows1809/base/Dockerfile
@@ -4,7 +4,7 @@ SHELL ["powershell", "-NoProfile", "-ExecutionPolicy Bypass", "-Command", "$Erro
 
 RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
     Invoke-Expression ((New-Object Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')); \
-    choco install -y cmake --version 3.14.5 --installargs "ADD_CMAKE_TO_PATH=System"; \
+    choco install -y cmake --version 3.15.4 --installargs "ADD_CMAKE_TO_PATH=System"; \
     choco install -y kitware-ninja --version 1.8.2.8127911; \
     choco install -y \
         git \