From 97bb4013edabc87bce27f5899aaa07647e486cc3 Mon Sep 17 00:00:00 2001 From: Chris Van Pelt Date: Thu, 13 Jun 2024 06:10:30 -0700 Subject: [PATCH] Create devcontainer.json (#472) * Create devcontainer.json Experimental codespace with gpu * Update devcontainer.json Cudnn and extensions --- .devcontainer/devcontainer.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..41db75f8 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,17 @@ +{ + "image": "mcr.microsoft.com/devcontainers/universal:2", + "customizations": { + "vscode": { + "extensions": [ + "ms-python.python", + "ms-toolsai.jupyter" + ] + } + }, + "features": { + "ghcr.io/devcontainers/features/nvidia-cuda:1": { + "installCudnn": true + }, + "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {} + } +}