-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathdevcontainer.json
More file actions
38 lines (38 loc) · 937 Bytes
/
devcontainer.json
File metadata and controls
38 lines (38 loc) · 937 Bytes
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
{
"name": "Transformation - Python",
"image": "mcr.microsoft.com/devcontainers/base:1-debian",
"features": {
"ghcr.io/devcontainers/features/java:1": {
"version": "17",
"jdkDistro": "open",
"gradleVersion": "latest",
"mavenVersion": "latest",
"antVersion": "latest",
"groovyVersion": "latest"
},
"ghcr.io/devcontainers/features/python:1": {
"version": "3.13"
},
"ghcr.io/devcontainers-extra/features/poetry:2": {
"version": "latest"
}
},
"containerEnv": {
"PYTHONUNBUFFERED": "1"
},
"postCreateCommand": "poetry install",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"charliermarsh.ruff",
"ms-toolsai.jupyter"
],
"settings": {
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": ["tests"]
}
}
}
}