Last active
March 27, 2026 22:44
-
-
Save sliekens/78ddf0d5082e6ad9571a0be92bb4d0ad to your computer and use it in GitHub Desktop.
Aspire Minimal Dev Container
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "name": "Aspire Minimal", | |
| "image": "mcr.microsoft.com/devcontainers/base:ubuntu-24.04", | |
| "features": { | |
| "ghcr.io/devcontainers/features/dotnet:2": {}, | |
| // "ghcr.io/devcontainers/features/node:1": {}, | |
| // "ghcr.io/devcontainers/features/python:1": {}, | |
| "ghcr.io/sliekens/devcontainer-features/aspire-cli:1": { | |
| "quality": "release" | |
| }, | |
| "ghcr.io/devcontainers/features/docker-in-docker:2": {} | |
| }, | |
| "postStartCommand": "dotnet dev-certs https --trust", | |
| "customizations": { | |
| "vscode": { | |
| "extensions": [ | |
| "ms-dotnettools.csdevkit" | |
| ] | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment