-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdevcontainer.json
47 lines (47 loc) · 1.28 KB
/
devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-in-docker
{
"name": "Devcontainer",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/devcontainers/features/azure-cli:1": {
"version": "2.61.0"
},
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/python:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"eamodio.gitlens",
"GitHub.copilot",
"ms-python.black-formatter",
"ms-python.python",
"GitHub.vscode-github-actions",
"tsandall.opa"
],
"settings": {
"files.associations": {
"env": "shellscript"
},
"python.testing.unittestArgs": [
"-v",
"-s",
"./examples",
"-p",
"*.py"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"python.envFile": "${workspaceFolder}/cacitesting.env",
"python.defaultInterpreterPath": "/usr/local/python/current/bin/python",
"editor.defaultFormatter": "ms-python.black-formatter",
"files.exclude": {
"**/__pycache__": true
},
}
}
},
"postCreateCommand": "./setup.sh"
}