Files
df-research/tech.ml.dataset/.devcontainer/devcontainer.json
2026-02-08 11:20:43 -10:00

25 lines
591 B
JSON
Vendored

// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/scicloj/devcontainer-templates/tree/main/src/basecloj
{
"name": "Base clojure dev env",
"build": {
"dockerfile": "Dockerfile",
"args": {
"BASE_IMAGE": "temurin-21-tools-deps-jammy",
"USERNAME": "${localEnv:USER}"
}
},
"remoteUser": "${localEnv:USER}",
"containerUser": "${localEnv:USER}",
"features": {
"ghcr.io/devcontainers/features/git:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"betterthantomorrow.calva"
]
}
}
}