Skip to content

Commit

Permalink
add dev container simple
Browse files Browse the repository at this point in the history
  • Loading branch information
phoughton committed Nov 11, 2023
1 parent 892a749 commit 59dffa5
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// 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
{


// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {
// "ghcr.io/devcontainers-contrib/features/ffmpeg-apt-get:1": {}
// },
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "python -m pip install -r requirements.txt",
"customizations": {
"vscode": {
"extensions": [
"ms-python.flake8",
"ms-python.python",
"ms-azuretools.vscode-docker",
"eamodio.gitlens",
"github.copilot",
"github.copilot-chat"
]
}
}

}

0 comments on commit 59dffa5

Please sign in to comment.