| |
@@ -0,0 +1,29 @@
|
| |
+ // For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
| |
+ // README at: https://github.com/devcontainers/templates/tree/main/src/python
|
| |
+ {
|
| |
+ "name": "fedora-python3-devel",
|
| |
+ // "image": "quay.io/fedora/fedora:latest",
|
| |
+ "build": {
|
| |
+ "dockerfile": "../../devtools/containers/Dockerfile.f39",
|
| |
+ "args": {
|
| |
+ "EXTRA_PKGS": "git vim make bash-completion python3-pip"
|
| |
+ }
|
| |
+ },
|
| |
+
|
| |
+ "shutdownAction": "stopContainer",
|
| |
+
|
| |
+ "postCreateCommand": "PIP_CMD=pip3 bash .devcontainer/on_create.sh",
|
| |
+
|
| |
+ "remoteUser": "root",
|
| |
+
|
| |
+ "customizations": {
|
| |
+ "vscode": {
|
| |
+ "extensions": [
|
| |
+ "ms-python.python",
|
| |
+ "ms-python.vscode-pylance",
|
| |
+ "ms-python.isort",
|
| |
+ "ms-azuretools.vscode-docker"
|
| |
+ ]
|
| |
+ }
|
| |
+ }
|
| |
+ }
|
| |
This depends on Issue #4244