Installation
Install with go
First create a build in the builds directory, then you can run the executable and move it to /usr/local/bin or include it in your path.
go build -ldflags="-s -w" -o builds/tango .
builds/tango --help
Install in Docker with a layered Dockerfile
FROM 24hoursmedia/template-tango AS template_tango
FROM alpine
COPY --from=template_tango /tango /usr/local/bin/tango
Last modified: 02 januari 2024