|
| 1 | +{ |
| 2 | + "name": "Docker Dev Container", |
| 3 | + "image": "mcr.microsoft.com/devcontainers/base:ubuntu", |
| 4 | + "features": { |
| 5 | + "ghcr.io/devcontainers-community/npm-features/prettier:1": {}, |
| 6 | + "ghcr.io/devcontainers-extra/features/actionlint:1": {}, |
| 7 | + "ghcr.io/devcontainers-extra/features/checkov:1": {}, |
| 8 | + "ghcr.io/devcontainers-extra/features/markdownlint-cli:1": {}, |
| 9 | + "ghcr.io/devcontainers-extra/features/shellcheck:1": {}, |
| 10 | + "ghcr.io/devcontainers-extra/features/yamllint:2": {}, |
| 11 | + "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}, |
| 12 | + "ghcr.io/devcontainers/features/github-cli:1": {}, |
| 13 | + "ghcr.io/dhoeric/features/hadolint:1": {} |
| 14 | + }, |
| 15 | + "customizations": { |
| 16 | + "vscode": { |
| 17 | + "extensions": [ |
| 18 | + "DavidAnson.vscode-markdownlint", |
| 19 | + "editorconfig.editorconfig", |
| 20 | + "esbenp.prettier-vscode", |
| 21 | + "exiasr.hadolint", |
| 22 | + "github.vscode-github-actions", |
| 23 | + "GitHub.vscode-pull-request-github", |
| 24 | + "ms-azuretools.vscode-containers", |
| 25 | + "redhat.vscode-yaml", |
| 26 | + "yzhang.markdown-all-in-one" |
| 27 | + ] |
| 28 | + } |
| 29 | + }, |
| 30 | + "postCreateCommand": "npm init -y >/dev/null 2>&1 || true && npm install --no-save prettier prettier-plugin-sh prettier-plugin-jinja-template" |
| 31 | +} |
0 commit comments