busybox
No long description provided.
Installation
dagger install github.com/camptocamp/daggerverse/busybox@1949f62ff75b2b9be679725b223be6cd6467ef1cEntrypoint
Return Type
BusyboxExample
dagger -m github.com/camptocamp/daggerverse/busybox@1949f62ff75b2b9be679725b223be6cd6467ef1c call \
func (m *MyModule) Example() *dagger.Busybox  {
	return dag.
			Busybox()
}@function
def example() -> dagger.Busybox:
	return (
		dag.busybox()
	)@func()
example(): Busybox {
	return dag
		.busybox()
}Types
Busybox 🔗
container() 🔗
Return Type
Container !Example
dagger -m github.com/camptocamp/daggerverse/busybox@1949f62ff75b2b9be679725b223be6cd6467ef1c call \
 containerfunc (m *MyModule) Example() *dagger.Container  {
	return dag.
			Busybox().
			Container()
}@function
def example() -> dagger.Container:
	return (
		dag.busybox()
		.container()
	)@func()
example(): Container {
	return dag
		.busybox()
		.container()
}