From 8332c1c528e735e304a46ef96938d4104e8e206b Mon Sep 17 00:00:00 2001 From: Kroese Date: Thu, 16 Oct 2025 08:19:14 +0200 Subject: [PATCH] Set RAM_SIZE to 4g in .devcontainer.json Changed RAM_SIZE from 'max' to '4g' in the configuration. --- .devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer.json b/.devcontainer.json index 3d8577f..c0e3ad4 100644 --- a/.devcontainer.json +++ b/.devcontainer.json @@ -3,7 +3,7 @@ "service": "windows", "containerEnv": { "VERSION": "11", - "RAM_SIZE": "max", + "RAM_SIZE": "4g", "DISK_SIZE": "max", "CPU_CORES": "max" },