Add alt/distroless-devel image

This commit is contained in:
Mikhail Gordeev 2023-02-14 03:53:47 +03:00
parent cb29d0ed3b
commit 6dc19ac493
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,7 @@
ALT distroless-devel image
===========================
DO NOT USE THIS IN PRODUCTION!
This image contains a lot of programs that may help with development and
debuging of distroless images.

View File

@ -0,0 +1,39 @@
from = "{{ registry }}{{ organization }}/distroless-base:{{ branch }}"
builder-install-packages = [
"coreutils",
"findutils",
"glibc-utils",
"iproute2",
"vim-console",
]
full-files = [
"/bin/bash",
"/bin/grep",
"/bin/mount",
"/bin/sed",
"/bin/sh",
"/usr/bin/curl",
"/usr/bin/gdb",
"/usr/bin/lsof",
"/usr/bin/rg",
"/usr/bin/rsync",
"/usr/bin/strace",
"/usr/bin/wget",
]
files = [
"/etc/alternatives/links/*",
"/usr/bin/vim",
]
library-files = [
"/usr/bin/vim",
"/usr/bin/ss",
]
packages = [
"coreutils",
"findutils",
"glibc-utils",
"iproute2",
"vim-common",
"vim-console",
]
cmd = ["/bin/bash"]