enigma-bbs/.devcontainer/devcontainer.json

20 lines
602 B
JSON
Raw Normal View History

2023-08-27 17:25:36 +00:00
{
"name": "Basic Node.js",
"build": { "dockerfile": "Dockerfile" },
2023-08-28 00:04:17 +00:00
"remoteUser": "root",
"forwardPorts": [8888, 4000],
"postCreateCommand": "gem install jekyll bundler && /bin/rm -rf node_modules && npm install && cd docs && bundle install && cd ..",
2023-08-27 17:25:36 +00:00
"features": {
"ghcr.io/devcontainers/features/python:1": {
"installTools": true,
2023-08-28 00:04:17 +00:00
"version": "latest"
2023-08-27 17:25:36 +00:00
},
"ghcr.io/devcontainers-contrib/features/curl-apt-get:1": {},
"ghcr.io/jungaretti/features/ripgrep:1": {},
2023-08-28 00:04:17 +00:00
"ghcr.io/warrenbuckley/codespace-features/sqlite:1": {},
"ghcr.io/devcontainers/features/ruby:1": {
"version": "3.1"
}
2023-08-27 17:25:36 +00:00
}
}