From a4b080726e55470ae56a5ee8e962e1bda0d09ba0 Mon Sep 17 00:00:00 2001 From: Joachim Hill-Grannec Date: Sun, 28 Jan 2024 17:55:38 -0600 Subject: [PATCH] feat: add host requirements --- .devcontainer/devcontainer.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ae8567f..5e71419 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -37,8 +37,13 @@ }, // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "yarn install --frozen-lockfile" + "postCreateCommand": "yarn install --frozen-lockfile", // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "root" + "hostRequirements": { + "cpus": 2, + "memory": "24gb", + "storage": "32gb" + } }