Skip to content

Commit

Permalink
feat: devcontainer updates
Browse files Browse the repository at this point in the history
  • Loading branch information
senz committed Feb 26, 2024
1 parent 800a750 commit 18555ec
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 3 deletions.
20 changes: 20 additions & 0 deletions .devcontainer/devcontainer-lock.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
{
"features": {
"ghcr.io/devcontainers-contrib/features/act:1": {
"version": "1.0.14",
"resolved": "ghcr.io/devcontainers-contrib/features/act@sha256:3ec9cb495f2b7daba5af1657d40604815bc38af7e0c05a0578eae1c979d4b73a",
"integrity": "sha256:3ec9cb495f2b7daba5af1657d40604815bc38af7e0c05a0578eae1c979d4b73a"
},
"ghcr.io/devcontainers-contrib/features/pre-commit:2": {
"version": "2.0.17",
"resolved": "ghcr.io/devcontainers-contrib/features/pre-commit@sha256:c18a7604e12b531e5a4e990c630e3f036d932903eb1e3b333e5c9e10a891e1a8",
"integrity": "sha256:c18a7604e12b531e5a4e990c630e3f036d932903eb1e3b333e5c9e10a891e1a8"
},
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "2.9.2",
"resolved": "ghcr.io/devcontainers/features/docker-in-docker@sha256:9074d8eaf4585ab1498c81a8762078992725614fc7a9cfafe799aa22717a6bbf",
"integrity": "sha256:9074d8eaf4585ab1498c81a8762078992725614fc7a9cfafe799aa22717a6bbf"
},
"ghcr.io/devcontainers/features/github-cli:1": {
"version": "1.0.11",
"resolved": "ghcr.io/devcontainers/features/github-cli@sha256:464564228ccdd6028f01f8a62a3cfbaf76e9ba7953b29ac0e53ba2c262604312",
"integrity": "sha256:464564228ccdd6028f01f8a62a3cfbaf76e9ba7953b29ac0e53ba2c262604312"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "1.4.0",
"resolved": "ghcr.io/devcontainers/features/node@sha256:71ff7ada788ab351cc535ca390d079e2cde6c4821c892031851953c2b3859fda",
Expand Down
17 changes: 14 additions & 3 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,22 @@
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/base:jammy",
"features": {
"ghcr.io/devcontainers/features/node:1": {}
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers-contrib/features/act:1": {},
"ghcr.io/devcontainers-contrib/features/pre-commit:2": {},
},
"containerEnv": {
"NODE_OPTIONS": "--openssl-legacy-provider",
}
},
"customizations": {
"vscode": {
"extensions": [
"redhat.vscode-yaml",
"fnando.linter"
]
}
},

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
Expand All @@ -18,7 +29,7 @@
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "uname -a",
// "postCreateCommand": "",

// Configure tool-specific properties.
// "customizations": {},
Expand Down

0 comments on commit 18555ec

Please sign in to comment.