Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,19 @@
"nodeGypDependencies": true,
"version": "lts"
},
"ghcr.io/devcontainers-contrib/features/mocha:2": {
"ghcr.io/devcontainers-extra/features/mocha:2": {
"version": "latest"

Copilot AI Jun 17, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Consider pinning the Mocha feature version instead of using latest to ensure reproducible container builds.

Suggested change
"version": "latest"
"version": "2.0.0"

Copilot uses AI. Check for mistakes.
},
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "latest"
},
"ghcr.io/devcontainers/features/java:1": {
"version": "17",
"installMaven": true
"installMaven": true,
"mavenVersion": "3.9.10"
},
"ghcr.io/devcontainers/features/python:1": {
"version": "3.8"
"version": "3.11"

Copilot AI Jun 17, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] To avoid unexpected changes when Python 3.11.x patches are released, consider specifying the full patch version (e.g., 3.11.2).

Suggested change
"version": "3.11"
"version": "3.11.2"

Copilot uses AI. Check for mistakes.
}
},
"customizations": {
Expand Down Expand Up @@ -49,5 +50,5 @@
// }
// }
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
// "remoteUser": "root"
}