-
Notifications
You must be signed in to change notification settings - Fork 771
Expand file tree
/
Copy pathdevcontainer.json
More file actions
33 lines (28 loc) · 1016 Bytes
/
devcontainer.json
File metadata and controls
33 lines (28 loc) · 1016 Bytes
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
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/javascript-node
{
"name": "genai-js",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/javascript-node:20-bullseye",
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/prulloac/devcontainer-features/ollama:1": {
"pull": "phi3,all-minilm:l6-v2"
}
},
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"EditorConfig.EditorConfig",
"formulahendry.code-runner",
"humao.rest-client"
]
}
},
"postCreateCommand": "npm install -g ollamazure tsx; npm install; cd videos/demos && npm install",
// Set minimal host requirements for the container.
"hostRequirements": {
"memory": "16gb"
}
}