Skip to content

Create devcontainer.json #681

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

alomairiahmed
Copy link

{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {
"docker-in-docker": {},
"node": {
"version": "lts"
},
"python": {
"version": "3.10"
},
"git": {}
},
"postCreateCommand": "npm install && pip install -r requirements.txt",
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"extensions": [
"ms-azuretools.vscode-docker",
"ms-python.python",
"esbenp.prettier-vscode"
]
}

@alomairiahmed
Copy link
Author

This pull request introduces a new development container configuration to streamline the development environment setup. The configuration specifies the use of a universal container image, includes essential tools and programming languages, and automates the installation of dependencies.

Development environment setup:

  • .devcontainer/devcontainer.json: Added a configuration file that uses the mcr.microsoft.com/devcontainers/universal:2 image. It includes features for docker-in-docker, Node.js (version lts), Python (version 3.10), and Git. A postCreateCommand is defined to install Node.js and Python dependencies, and the file specifies recommended VS Code extensions and terminal settings.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant