https://github.com/andrei-demidov/dev-containers-features
VS Code Development Containers Features
https://github.com/andrei-demidov/dev-containers-features
aws-sam aws-sam-cli dev-containers vs-code
Last synced: about 2 months ago
JSON representation
VS Code Development Containers Features
- Host: GitHub
- URL: https://github.com/andrei-demidov/dev-containers-features
- Owner: andrei-demidov
- License: mit
- Created: 2024-06-21T23:47:01.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-06-22T01:02:51.000Z (11 months ago)
- Last Synced: 2025-02-11T13:28:33.789Z (4 months ago)
- Topics: aws-sam, aws-sam-cli, dev-containers, vs-code
- Language: Shell
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dev Containers Features
[Development Containers](https://containers.dev/) [Features](https://containers.dev/implementors/features/) are self-contained, shareable units of installation code and development container configuration. These features allow you to quickly and easily add additional tooling, runtimes, or libraries to your development container, facilitating a streamlined development experience for you and your collaborators.
## Features
### [AWS SAM CLI](src/aws-sam-cli)
This feature installs the latest version of the [AWS SAM CLI](https://github.com/aws/aws-sam-cli), a command-line interface for building, testing, and deploying serverless applications defined by AWS Serverless Application Model (AWS SAM).
To use the `aws-sam-cli` feature in your development container, reference it in your `devcontainer.json` configuration file:
```json
"features": {
"ghcr.io/efficient-solutions/dev-containers-features/aws-sam-cli:1": {}
}
```