From 401d57bf167d3261495fed34979b7d77967b2def Mon Sep 17 00:00:00 2001 From: Benoit Moussaud Date: Mon, 17 Mar 2025 11:11:17 +0000 Subject: [PATCH] .devcontainer --- .devcontainer/devcontainer.json | 42 +++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..ff4c29d --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,42 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/python +{ + "name": "Python 3", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "image": "mcr.microsoft.com/devcontainers/python:1-3.12-bullseye", + "features": { + "ghcr.io/devcontainers/features/azure-cli:1": { + "installBicep": true, + "version": "latest", + "bicepVersion": "latest" + }, + "ghcr.io/azure/azure-dev/azd:0": {}, + "ghcr.io/devcontainers/features/github-cli:1": {} + }, + // Features to add to the dev container. More info: https://containers.dev/features. + // "features": {}, + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // "forwardPorts": [], + // Use 'postCreateCommand' to run commands after the container is created. + // "postCreateCommand": "pip3 install --user -r requirements.txt", + // Configure tool-specific properties. + "customizations": { + "vscode": { + "extensions": [ + "GitHub.copilot", + "GitHub.copilot-chat", + "github.vscode-pull-request-github", + "ms-azuretools.azure-dev", + "ms-azuretools.vscode-bicep", + "ms-vscode.powershell", + "formulahendry.azure-storage-explorer", + "ms-azuretools.vscode-docker", + "ms-azuretools.vscode-azureresourcegroups", + "ms-azuretools.vscode-azurestorage", + "ms-azuretools.vscode-azure-github-copilot" + ] + } + } + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" +} \ No newline at end of file