From a29ae6c9bed468475feb384b7e4178ed66809daf Mon Sep 17 00:00:00 2001 From: Adam Rehn Date: Fri, 11 Dec 2020 15:15:18 +1000 Subject: [PATCH] Bump required size limit for Windows containers to 400GiB --- ue4docker/infrastructure/WindowsUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ue4docker/infrastructure/WindowsUtils.py b/ue4docker/infrastructure/WindowsUtils.py index 250b7637..31bbd028 100644 --- a/ue4docker/infrastructure/WindowsUtils.py +++ b/ue4docker/infrastructure/WindowsUtils.py @@ -49,7 +49,7 @@ def requiredSizeLimit(): ''' Returns the minimum required image size limit (in GB) for Windows containers ''' - return 200.0 + return 400.0 @staticmethod def minimumRequiredVersion():