diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index 2df9319d5c36498b1c737ba39e7456441e6491c3..f9be646d3f7f6c817d881b32d6c913800e9ac3aa 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -4,6 +4,9 @@ FROM mcr.microsoft.com/vscode/devcontainers/miniconda:0-3
 ARG NODE_VERSION="none"
 RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"; fi
 
+RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
+    && apt-get -y install libgl1
+
 # Copy environment.yml (if found) to a temp location so we update the environment. Also
 # copy "noop.txt" so the COPY instruction does not fail if no environment.yml exists.
 COPY .devcontainer/environment.yml* .devcontainer/requirements.txt /tmp/conda-tmp/
@@ -15,6 +18,3 @@ RUN if [ -f "/tmp/conda-tmp/environment.yml" ]; then umask 0002 && /opt/conda/bi
 #     && pip install --no-cache-dir pipx \
 #     && pipx reinstall-all
 
-# [Optional] Uncomment this section to install additional OS packages.
-# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
-#     && apt-get -y install --no-install-recommends <your-package-list-here>
\ No newline at end of file
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 5c9a3241ce214cb8f72893413982256f904a48b5..f452e78e099c71179f0abb98bacb8266cb098675 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -8,7 +8,7 @@
 		}
 	},
 
-	"hostRequirements": { "cpus": 4, "memory": "8gb", "storage": "100gb"},
+	"hostRequirements": { "cpus": 4, "memory": "8gb", "storage": "50gb"},
 
 	// Configure tool-specific properties.
 	"customizations": {