mirror of
https://github.com/Wessel/nhl-levenshtein.git
synced 2026-07-18 14:34:30 +02:00
44 lines
1.0 KiB
JSON
44 lines
1.0 KiB
JSON
{
|
|
"name": "Deno",
|
|
"build": {
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
|
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
|
// "features": {},
|
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
// "forwardPorts": [],
|
|
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
// "postCreateCommand": "yarn install",
|
|
|
|
// Configure tool-specific properties.
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"justjavac.vscode-deno-extensionpack"
|
|
]
|
|
}
|
|
},
|
|
"runArgs": [
|
|
"--privileged",
|
|
"--cap-add=ALL",
|
|
"--security-opt",
|
|
"seccomp=unconfined",
|
|
"--env",
|
|
"COMPlus_PerfMapEnabled=1",
|
|
"--env",
|
|
"COMPlus_EnableEventLog=1",
|
|
"--env",
|
|
"COMPlus_ZapDisable=1"
|
|
],
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/dotnet:2": {},
|
|
"ghcr.io/devcontainers-extra/features/haskell:2": {}
|
|
}
|
|
|
|
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
|
// "remoteUser": "root"
|
|
}
|