Skip to content

Commit

Permalink
Merge pull request microsoft#163 from microsoft/Devcontainer
Browse files Browse the repository at this point in the history
DevContainer Setup fix
  • Loading branch information
softchris authored Nov 10, 2023
2 parents 7d96b5b + 16d5e85 commit 3b4adfb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .devcontainer/Setup.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
This file will use the official Python image as the base image for the
development container. It will also install some VS Code extensions for Python development,
such as the Python extension and the Jupyter.

Finally, it will run the command pip install -r requirements.txt after the container is
created, which will install all the Python libraries listed in the requirements.txt file.
You can learn more about how to create and use dev containers in VS Code from this link or this link.
I hope this helps you with your project http://code.visualstudio.com?WT.mc_id=academic-105485-koreyst
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"extensions": [
"ms-python.python",
"ms-toolsai.jupyter"
]
],
"postCreateCommand": "pip install -r requirements.txt"
}
}
}
File renamed without changes.

0 comments on commit 3b4adfb

Please sign in to comment.