Skip to content

Commit 6db66dc

Browse files
authored
Merge pull request #6595 from benz0li/update-dev-containers-49fe9c8
2 parents 49fe9c8 + 9e6277e commit 6db66dc

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"name": "GHC 9.10.1",
3+
"build": {
4+
"dockerfile": "../GHC.Dockerfile",
5+
"context": "..",
6+
"args": {
7+
"GHC_VERSION": "9.10.1",
8+
"USE_ZSH_FOR_ROOT": "unset-to-use-ash",
9+
"SET_LANG": "C.UTF-8",
10+
"SET_TZ": ""
11+
}
12+
},
13+
14+
"onCreateCommand": "onCreateCommand.sh",
15+
"postCreateCommand": "cabal update",
16+
17+
"features": {
18+
"ghcr.io/devcontainers/features/common-utils:2": {
19+
"configureZshAsDefaultShell": true,
20+
"upgradePackages": false,
21+
"username": "vscode",
22+
"userUid": "automatic",
23+
"userGid": "automatic"
24+
}
25+
},
26+
27+
"customizations": {
28+
"vscode": {
29+
"extensions": [
30+
31+
"exiasr.hadolint",
32+
"GitHub.vscode-pull-request-github",
33+
"mhutchie.git-graph",
34+
"mutantdino.resourcemonitor",
35+
"timonwong.shellcheck"
36+
],
37+
"settings": {
38+
"gitlens.showWelcomeOnInstall": false,
39+
"gitlens.showWhatsNewAfterUpgrades": false,
40+
"resmon.show.battery": false,
41+
"resmon.show.cpufreq": false
42+
}
43+
}
44+
},
45+
46+
// Set 'remoteUser' to 'root' to connect as root instead.
47+
"remoteUser": "vscode",
48+
49+
"remoteEnv": {
50+
// Pip: Install packages to the user site
51+
"PIP_USER": "1"
52+
}
53+
}

0 commit comments

Comments
 (0)