diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..5ce7d1b0d0 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,22 @@ +// For format details, see https://aka.ms/devcontainer.json +{ + "name": "GOV.UK Developer Docs", + "image": "ruby:3.1", + "features": { + "ghcr.io/devcontainers/features/node:1": { + "nodeGypDependencies": true, + "version": "lts", + "nvmVersion": "latest" + } + }, + "forwardPorts": [4567], + "postCreateCommand": "bundle install", + "customizations": { + "vscode": { + "extensions": [ + "Shopify.ruby-lsp", + "redhat.vscode-yaml" + ] + } + } +}