-
Notifications
You must be signed in to change notification settings - Fork 148
/
devcontainer.json
38 lines (37 loc) · 1.18 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
{
"name": "py_trees-38",
"build": {
"dockerfile": "./Dockerfile",
"args": {
"NAME": "py_trees",
"POETRY_VERSION": "1.3.2",
"PYTHON_VERSION": "3.8.16",
"DEBIAN_VERSION": "bullseye"
},
"context": ".."
},
"containerEnv": {
"POETRY_HTTP_BASIC_PYPI_USERNAME": "${localEnv:POETRY_HTTP_BASIC_PYPI_USERNAME}",
"POETRY_HTTP_BASIC_PYPI_PASSWORD": "${localEnv:POETRY_HTTP_BASIC_PYPI_PASSWORD}"
},
"remoteUser": "zen",
"customizations": {
"vscode": {
"extensions": [
"bierner.github-markdown-preview",
"bierner.markdown-preview-github-styles",
"bungcip.better-toml",
"eamodio.gitlens",
"ms-python.python",
"omnilib.ufmt",
"redhat.vscode-yaml",
"streetsidesoftware.code-spell-checker",
"tht13.rst-vscode"
]
}
},
"postCreateCommand": "poetry install",
// Breaks codespaces
// "workspaceMount": "source=${localWorkspaceFolder},target=/workspaces,type=bind",
// "workspaceFolder": "/workspaces"
}