Try setting min. req to 1GB of RAM

Now that we only ship prebuilt jupyterlab extensions,
maybe this is ok?
This commit is contained in:
YuviPanda
2021-10-18 18:39:50 +05:30
parent 22642f527f
commit 19bbcb8ba3
6 changed files with 136 additions and 137 deletions

View File

@@ -29,10 +29,9 @@ def run_systemd_image(image_name, container_name, bootstrap_pip_spec):
'--mount', 'type=bind,source=/sys/fs/cgroup,target=/sys/fs/cgroup',
'--detach',
'--name', container_name,
# This is the minimum VM size we support. JupyterLab extensions seem
# to need at least this much RAM to build. Boo?
# This is the minimum VM size we support.
# If we change this, need to change all other references to this number.
'--memory', '1.5G',
'--memory', '1G',
]
if bootstrap_pip_spec: