From 20c0e2111d3261593d20c99ea6cc1954f6331be1 Mon Sep 17 00:00:00 2001 From: Ivan Shcheklein Date: Mon, 30 Jan 2023 17:54:49 -0800 Subject: [PATCH] Add devcontainer to run in codespaces --- .devcontainer.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .devcontainer.json diff --git a/.devcontainer.json b/.devcontainer.json new file mode 100644 index 00000000..21ca9cbc --- /dev/null +++ b/.devcontainer.json @@ -0,0 +1,14 @@ +{ + "name": "example-repos-dev", + "image": "mcr.microsoft.com/devcontainers/python:3.10", + "extensions": ["Iterative.dvc", "ms-python.python", "redhat.vscode-yaml"], + "features": { + "ghcr.io/devcontainers/features/nvidia-cuda:1": { + "installCudnn": true + }, + "ghcr.io/saml-to/devcontainer-features/assume-aws-role:1": { + "role": "arn:aws:iam::342840881361:role/iterative-saml-codespaces" + }, + "ghcr.io/devcontainers/features/aws-cli:1": {} + } +}