Skip to content
Closed

Main #23965

Show file tree
Hide file tree
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
Binary file added .vscode/file-tags.db
Binary file not shown.
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "dockerfile",
"request": "launch",
"name": "Docker: Build",
Comment on lines +8 to +10
Copy link

Copilot AI Jan 13, 2026

Choose a reason for hiding this comment

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

The launch configuration type should be "docker" (lowercase), not "dockerfile". The "dockerfile" type is not a valid VS Code debug configuration type. This will prevent the launch configuration from working correctly.

Suggested change
"type": "dockerfile",
"request": "launch",
"name": "Docker: Build",
"type": "docker",
"request": "launch",
"name": "Docker: Build",

Copilot uses AI. Check for mistakes.
"dockerfile": "Dockerfile",
"contextPath": "${workspaceFolder}"
}
Comment on lines +7 to +13
Copy link

Copilot AI Jan 13, 2026

Choose a reason for hiding this comment

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

The request type "launch" is not appropriate for a Docker build configuration. A build task is not a debuggable launch configuration. Consider creating a VS Code task in tasks.json for building Docker images instead, or use the Docker extension's built-in commands.

Suggested change
{
"type": "dockerfile",
"request": "launch",
"name": "Docker: Build",
"dockerfile": "Dockerfile",
"contextPath": "${workspaceFolder}"
}

Copilot uses AI. Check for mistakes.
]
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"DockerRun.DisableDockerrc": true
}
Loading