diff --git a/README.md b/README.md index beec5dd..ad6b545 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ - [alpine-docker-outside-of-docker](https://github.com/cirolosapio/devcontainers-features/pkgs/container/devcontainers-features%2Falpine-docker-outside-of-docker) - [alpine-gh-cli](https://github.com/cirolosapio/devcontainers-features/pkgs/container/devcontainers-features%2Falpine-gh-cli) - [alpine-git](https://github.com/cirolosapio/devcontainers-features/pkgs/container/devcontainers-features%2Falpine-git) +- [alpine-jq](https://github.com/cirolosapio/devcontainers-features/pkgs/container/devcontainers-features%2Falpine-jq) - [alpine-mage2postman](https://github.com/cirolosapio/devcontainers-features/pkgs/container/devcontainers-features%2Falpine-mage2postman) - [alpine-magento-cloud-cli](https://github.com/cirolosapio/devcontainers-features/pkgs/container/devcontainers-features%2Falpine-magento-cloud-cli) - [alpine-n98-magerun2](https://github.com/cirolosapio/devcontainers-features/pkgs/container/devcontainers-features%2Falpine-n98-magerun2) diff --git a/src/alpine-jq/README.md b/src/alpine-jq/README.md new file mode 100644 index 0000000..88af64e --- /dev/null +++ b/src/alpine-jq/README.md @@ -0,0 +1,20 @@ + +# alpine-jq (alpine-jq) + +Installs jq on alpine + +## Example Usage + +```json +"features": { + "ghcr.io/cirolosapio/devcontainers-features/alpine-jq:0": {} +} +``` + + + + + +--- + +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/cirolosapio/devcontainers-features/blob/main/src/alpine-jq/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/alpine-jq/devcontainer-feature.json b/src/alpine-jq/devcontainer-feature.json new file mode 100644 index 0000000..2334165 --- /dev/null +++ b/src/alpine-jq/devcontainer-feature.json @@ -0,0 +1,7 @@ +{ + "name": "alpine-jq", + "id": "alpine-jq", + "version": "0.0.1", + "description": "Installs jq on alpine", + "documentationURL": "https://github.com/cirolosapio/devcontainers-features/tree/main/src/alpine-jq" +} \ No newline at end of file diff --git a/src/alpine-jq/install.sh b/src/alpine-jq/install.sh new file mode 100644 index 0000000..f585875 --- /dev/null +++ b/src/alpine-jq/install.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +echo "Activating feature 'alpine-jq'" + +apk --no-cache add jq + +echo 'Done!' \ No newline at end of file