1+ // For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+ // README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
13{
2- "extensions" : [
3- " ms-python.python" ,
4- " ms-python.vscode-pylance" ,
5- ],
6- "settings" : {
7- "python.languageServer" : " Pylance" ,
8- "python.linting.enabled" : true ,
9- "python.linting.pylintEnabled" : true ,
10- "python.testing.pytestArgs" : [
11- " dolang"
12- ],
13- "python.formatting.provider" : " black" ,
14- "editor.formatOnSave" : true ,
15- "python.testing.unittestEnabled" : false ,
16- "python.testing.pytestEnabled" : true ,
17- "git.ignoreLimitWarning" : true
18- },
19- "build" : {
20- "dockerfile" : " Dockerfile" ,
21- "context" : " .." ,
22- "args" : {
23- "VARIANT" : " 3.9" ,
24- "NODE_VERSION" : " lts/*"
4+ "name" : " Ubuntu" ,
5+ // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+ "image" : " mcr.microsoft.com/devcontainers/base:noble" ,
7+ "features" : {
8+ "ghcr.io/rocker-org/devcontainer-features/apt-packages:1" : {
9+ "upgradePackages" : true ,
10+ "packages" : true
2511 }
26- },
27- "postCreateCommand" : " poetry config virtualenvs.in-project true && poetry install" ,
28- "remoteUser" : " vscode"
12+ }
13+ // Features to add to the dev container. More info: https://containers.dev/features.
14+ // "features": {},
15+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
16+ // "forwardPorts": [],
17+ // Use 'postCreateCommand' to run commands after the container is created.
18+ // "postCreateCommand": "uname -a",
19+ // Configure tool-specific properties.
20+ // "customizations": {},
21+ // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
22+ // "remoteUser": "root"
2923}
0 commit comments