Comment on Tool to manage CLI tools
Wyatt@programming.dev 1 year agoWhat do you mean? I containerize my tools, and write a docker file to install everything. The dockerfile is just something like:
FROM ubuntu:22.04
Install dependencies
RUN apt-get update &&
apt-get install -y helm pluto kubeval etc
How is that gross?
fireflash38@lemmy.world 1 year ago
Now install tools that are only available as github released binaries. And ensure that hashes match for that. Maybe install a tool that needs to be compiled.