https://github.com/looztra/asdf-hadolint
hadolint (https://github.com/hadolint/hadolint) plugin for asdf
https://github.com/looztra/asdf-hadolint
Last synced: about 1 year ago
JSON representation
hadolint (https://github.com/hadolint/hadolint) plugin for asdf
- Host: GitHub
- URL: https://github.com/looztra/asdf-hadolint
- Owner: looztra
- License: apache-2.0
- Created: 2019-07-26T06:27:37.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-04-01T02:57:21.000Z (about 3 years ago)
- Last Synced: 2025-03-19T07:04:41.816Z (over 1 year ago)
- Language: Shell
- Size: 39.1 KB
- Stars: 4
- Watchers: 1
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: contributing.md
- License: LICENSE
Awesome Lists containing this project
README
# asdf-hadolint [](https://github.com/looztra/asdf-hadolint/actions/workflows/build.yml) [](https://github.com/looztra/asdf-hadolint/actions/workflows/lint.yml)
[hadolint](https://github.com/hadolint/hadolint#readme) plugin for the [asdf version manager](https://asdf-vm.com).
Table of Contents
- [Build History](#build-history)
- [Dependencies](#dependencies)
- [Install](#install)
- [Contributing](#contributing)
- [Tooling Requirements](#tooling-requirements)
- [Task](#task)
- [License](#license)
# Build History
[](https://github.com/looztra/asdf-hadolint/actions)
# Dependencies
- `bash`, `curl`, `tar`: generic POSIX utilities.
# Install
Plugin:
```shell
asdf plugin add hadolint https://github.com/looztra/asdf-hadolint.git
```
hadolint:
```shell
# Show all installable versions
asdf list-all hadolint
# Install specific version
asdf install hadolint latest
# Set a version globally (on your ~/.tool-versions file)
asdf global hadolint latest
# Now hadolint commands are available
hadolint --help
```
Check [asdf](https://github.com/asdf-vm/asdf) readme for more instructions on how to
install & manage versions.
# Contributing
Contributions of any kind welcome! See the [contributing guide](contributing.md).
[Thanks goes to these contributors](https://github.com/looztra/asdf-hadolint/graphs/contributors)!
## Tooling Requirements
### Task
[Task](https://taskfile.dev/#/) is a great shell commands bootstrap solution (like `Make` but in Yaml) permitting you to make the same calls locally (for development phases) and within the CI/CD pipeline.
You want to get familiar with it? Read [this](https://tsh.io/blog/taskfile-and-gnu-make-for-automation/).
You can install it that way:
```bash
asdf plugin add task
# Will install the Task version referenced in ./tool-versions
asdf install task $(asdf current task | tr -s ' ' | cut -d' ' -f2)
task --version
```
# License
Licensed under the [Apache License 2.0](LICENSE)