Skip to content

Commit

Permalink
Add devcontainer.json to configure the development container
Browse files Browse the repository at this point in the history
* Specify the Docker image to use for the container
* Add necessary VS Code extensions for Python development
* Include a postCreateCommand to install dependencies from `requirements.txt`
  • Loading branch information
josemnbcamacho committed Oct 24, 2024
1 parent b510e61 commit 89bbea0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "OmniParser Dev Container",
"image": "mcr.microsoft.com/devcontainers/python:3.9",
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-toolsai.jupyter"
],
"postCreateCommand": "pip install -r requirements.txt"
}

0 comments on commit 89bbea0

Please sign in to comment.