-
Notifications
You must be signed in to change notification settings - Fork 440
Add initial devcontainer configuration #546
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
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR introduces a basic devcontainer configuration to enable containerized development environments. The configuration uses Microsoft's universal devcontainer image, providing a standardized development setup.
Key Changes:
- Added
.devcontainer/devcontainer.jsonwith minimal configuration - Configured to use Microsoft's universal devcontainer image version 2
- Includes an empty features object for potential future customization
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -0,0 +1,4 @@ | |||
| { | |||
| "image": "mcr.microsoft.com/devcontainers/universal:2", | |||
Copilot
AI
Nov 13, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The universal:2 image tag is deprecated. Microsoft's universal devcontainer image uses semantic versioning, and the :2 tag refers to an older major version. Consider using a more specific version tag (e.g., 2-linux) or upgrading to a newer version if available. Using specific version tags also improves reproducibility and makes it easier to track updates.
| "image": "mcr.microsoft.com/devcontainers/universal:2", | |
| "image": "mcr.microsoft.com/devcontainers/universal:2-linux", |
| "image": "mcr.microsoft.com/devcontainers/universal:2", | ||
| "features": {} |
Copilot
AI
Nov 13, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The empty features object is unnecessary. If no features are being added, this line can be removed entirely. Devcontainer features are optional, and an empty object adds no value to the configuration.
| "image": "mcr.microsoft.com/devcontainers/universal:2", | |
| "features": {} | |
| "image": "mcr.microsoft.com/devcontainers/universal:2" |
| @@ -0,0 +1,4 @@ | |||
| { | |||
Copilot
AI
Nov 13, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] Consider adding a name field to the devcontainer configuration to provide a descriptive name for the development environment. This improves clarity when working with multiple devcontainers. Example: "name": "Project Development Container"
| { | |
| { | |
| "name": "Project Development Container", |
No description provided.