https://github.com/bashup/alpine-tools
Alpine binaries of miscellaneous tools (shellcheck, yaml2json, and modd) as a docker source image
https://github.com/bashup/alpine-tools
Last synced: 5 days ago
JSON representation
Alpine binaries of miscellaneous tools (shellcheck, yaml2json, and modd) as a docker source image
- Host: GitHub
- URL: https://github.com/bashup/alpine-tools
- Owner: bashup
- Created: 2018-12-11T20:19:30.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-15T01:23:15.000Z (almost 3 years ago)
- Last Synced: 2025-07-23T08:52:01.308Z (7 months ago)
- Language: Dockerfile
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Miscellaneous Tool Builds
This docker image provides alpine binaries (in `/bin`) for various tools that are not available as alpine APKs. Its purpose is to be a source image for other alpine-based images (e.g. [dirtsimple/php-server](https://github.com/dirtsimple/php-server) and [bashup/bash-kit](https://github.com/bashup/bash-kit)) to copy tools from.
Currently, the tools built include:
* [shellcheck](https://github.com/koalaman/shellcheck)
* [yaml2json](https://github.com/bronze1man/yaml2json)
* [modd](https://github.com/cortesi/modd) (v0.8, patched to use a 300ms debounce rate)
* [jq 1.6](https://stedolan.github.io/jq/)
* [adnanh/webhook](https://github.com/adnanh/webhook) 2.8.0
To use them in a docker image build, you can do something like this:
```dockerfile
FROM ghcr.io/bashup/alpine-tools:latest as alpine-tools
FROM whatever/thing # whatever your actual base image is
COPY --from=alpine-tools /bin/* /usr/bin/
```
(Or of course you can copy individual binaries rather than all of them.)