Skip to content

Commit

Permalink
Add devcontainer config (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
letmaik authored Feb 5, 2023
1 parent d49f6cd commit 6c8a11a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"image": "quay.io/pypa/manylinux2014_x86_64",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python"
],
"settings": {
"python.defaultInterpreterPath": "/opt/python/cp311-cp311/bin/python"
}
}
},
"workspaceMount": "source=${localWorkspaceFolder},target=/io,type=bind,consistency=cached",
"workspaceFolder": "/io",
"remoteEnv": {
"PYTHON_ARCH": "x86_64",
"PYTHON_VERSION": "3.11",
"NUMPY_VERSION": "1.23.*"
},
"postCreateCommand": "git submodule update --init --recursive"
}

0 comments on commit 6c8a11a

Please sign in to comment.