mirror of
https://github.com/tfausak/witch.git
synced 2024-11-22 14:58:13 +03:00
8d3a632114
* Upgrade to GHC 9.8.1 * Update devcontainer
22 lines
461 B
YAML
22 lines
461 B
YAML
{
|
|
"services": {
|
|
"devcontainer": {
|
|
"command": "sh -exc 'sleep infinity'",
|
|
"image": "public.ecr.aws/acilearning/haskell:9.6.2",
|
|
"init": true,
|
|
"volumes": [
|
|
"..:/workspace",
|
|
"cabal-cache:/home/vscode/.cache/cabal",
|
|
"cabal-state:/home/vscode/.local/state/cabal"
|
|
],
|
|
"working_dir": "/workspace"
|
|
}
|
|
},
|
|
"volumes": {
|
|
"cabal-cache": null,
|
|
"cabal-state": {
|
|
"external": true
|
|
}
|
|
}
|
|
}
|