mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
30 lines
829 B
JSON
30 lines
829 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainer.schema.json",
|
|
"name": "Renovate",
|
|
"dockerFile": "Dockerfile",
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/common-utils:2": {}
|
|
},
|
|
"capAdd": ["SYS_PTRACE"],
|
|
"privileged": true,
|
|
"securityOpt": ["seccomp=unconfined"],
|
|
"hostRequirements": {
|
|
"cpus": 4,
|
|
"memory": "7gb",
|
|
"storage": "32gb"
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"dbaeumer.vscode-eslint",
|
|
"esbenp.prettier-vscode",
|
|
"orta.vscode-jest",
|
|
"editorconfig.editorconfig",
|
|
"github.vscode-github-actions"
|
|
]
|
|
}
|
|
},
|
|
"postCreateCommand": [".devcontainer/post-create.sh"],
|
|
// Otherwise jest watcher fails because deps were not installed yet
|
|
"waitFor": "postCreateCommand"
|
|
}
|