Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
cirolosapio committed Jan 9, 2024
2 parents 9e829f7 + f484f5e commit 3b4d7a4
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/alpine-curl/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

# alpine-curl (alpine-curl)

Installs curl on alpine

## Example Usage

```json
"features": {
"ghcr.io/cirolosapio/devcontainers-features/alpine-curl:0": {}
}
```

---

_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/cirolosapio/devcontainers-features/blob/main/src/alpine-curl/devcontainer-feature.json). Add additional notes to a `NOTES.md`._
7 changes: 7 additions & 0 deletions src/alpine-curl/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "alpine-curl",
"id": "alpine-curl",
"version": "0.0.1",
"description": "Installs curl on alpine",
"documentationURL": "https://github.com/cirolosapio/devcontainers-features/tree/main/src/alpine-curl"
}
9 changes: 9 additions & 0 deletions src/alpine-curl/install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh

set -e

echo "Activating feature 'alpine-curl'"

apk --no-cache add curl

echo 'Done!'

0 comments on commit 3b4d7a4

Please sign in to comment.