mirror of
https://github.com/kerberos-io/agent.git
synced 2026-03-02 22:59:15 +00:00
24 lines
572 B
JSON
24 lines
572 B
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
// README at: https://github.com/devcontainers/templates/tree/main/src/python
|
|
{
|
|
"name": "go:1.24-bookworm",
|
|
"runArgs": [
|
|
"--name=agent",
|
|
"--network=host"
|
|
],
|
|
"dockerFile": "Dockerfile",
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"GitHub.copilot",
|
|
"ms-azuretools.vscode-docker",
|
|
"mongodb.mongodb-vscode"
|
|
]
|
|
}
|
|
},
|
|
"forwardPorts": [
|
|
3000,
|
|
8080
|
|
],
|
|
"postCreateCommand": "cd ui && yarn install && yarn build && cd ../machinery && go mod download"
|
|
} |