Skip to content

Commit c450c39

Browse files
authored
Merge pull request #50 from cvmfs-contrib/feat/devcontainer-local
feat: Add local devcontainer configuration with npm, docker, git-lfs
2 parents ea7f160 + 835f2d8 commit c450c39

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.devcontainer/devcontainer.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "CVMFS Action Dev",
3+
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
4+
"features": {
5+
"ghcr.io/devcontainers/features/node": {},
6+
"ghcr.io/devcontainers/features/docker-in-docker": {},
7+
"ghcr.io/devcontainers/features/git-lfs": {}
8+
},
9+
"forwardPorts": [],
10+
"postCreateCommand": "npm install -g @devcontainers/cli",
11+
"customizations": {
12+
"vscode": {
13+
"extensions": [
14+
"GitHub.vscode-github-actions"
15+
]
16+
}
17+
}
18+
}

0 commit comments

Comments
 (0)