Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions org/alt/distroless-toybox/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ALT distroless-toybox image
===========================

This is distroless image with toybox binary. It can be used for debugging
containers as toybox provide a lot of utils.

To launch shell in the container:
`docker run --rm -it registry.altlinux.org/alt/distroless-toybox`

To get system inforamtion:
`docker run --rm -it registry.altlinux.org/alt/distroless-toybox uname -a`
7 changes: 7 additions & 0 deletions org/alt/distroless-toybox/distroless.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from = "{{ registry }}{{ organization }}/distroless-static:{{ branch }}"

builder-install-packages = ["toybox"]
files = ["/bin/toybox"]

entrypoint = ["/bin/toybox"]
cmd = ["sh"]