Go to file
Jason Swank ac6aa468f5 cleanup
2023-03-16 12:21:36 -04:00
bin cleanup 2023-03-16 12:21:36 -04:00
ctx/home initial revision 2023-02-27 13:33:28 -05:00
.build.yml fix typo for dh publish 2023-03-13 20:33:28 -04:00
.gitignore cleanup 2023-03-16 12:21:36 -04:00
Dockerfile initial revision 2023-02-27 13:33:28 -05:00
justfile cleanup 2023-03-16 12:21:36 -04:00
LICENSE initial revision 2023-02-27 13:33:28 -05:00
NOTICE initial revision 2023-02-27 13:33:28 -05:00
README.md cleanup 2023-03-16 12:21:36 -04:00

alpine-cli

A minimal image for running Linux CLI utilities - shell scripts and similar. This is useful for both interactive purposes or as the basis for other utility images.

Quickstart

docker run -ti --rm ghcr.io/jswank/alpine-cli
~ $ ^D
exit

A script, using casey/just is in bin/cli. It can be used to quickly start an ephemeral (or persistent) container:

bin/cli
~ $ ^D
exit

bin/cli persist
~ $ ls
~ $ 
exit

podman cp foo.json alpine-cli:/home/cli

bin/cli persist
~ $ ls
foo.json
~ $ 
exit