forked from commercialhaskell/stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
57 lines (52 loc) · 1.4 KB
/
devcontainer.json
File metadata and controls
57 lines (52 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "GHC 9.10.3 (default)",
"build": {
"dockerfile": "GHC.Dockerfile",
"args": {
"GHC_VERSION": "9.10.3",
// "SUBTAG": "int-native",
"HLS_VERSION": "2.13.0.0",
"USE_ZSH_FOR_ROOT": "unset-to-use-ash",
"LANG": "C.UTF-8",
"TZ": ""
}
},
"initializeCommand": [".devcontainer/init"],
"onCreateCommand": "onCreateCommand.sh",
"postCreateCommand": "postCreateCommand.sh",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"configureZshAsDefaultShell": true,
"upgradePackages": false,
"username": "vscode",
"userUid": "automatic",
"userGid": "automatic"
}
},
"customizations": {
"vscode": {
"extensions": [
"/var/tmp/extensions/eamodio.gitlens-11.7.0.vsix",
"exiasr.hadolint",
"GitHub.vscode-pull-request-github",
"haskell.haskell",
"mhutchie.git-graph",
"mutantdino.resourcemonitor",
"timonwong.shellcheck"
],
"settings": {
"gitlens.showWelcomeOnInstall": false,
"gitlens.showWhatsNewAfterUpgrades": false,
"haskell.manageHLS": "PATH",
"resmon.show.battery": false,
"resmon.show.cpufreq": false
}
}
},
// Set 'remoteUser' to 'root' to connect as root instead.
"remoteUser": "vscode",
"remoteEnv": {
// Pip: Install packages to the user site
"PIP_USER": "1"
}
}