busybox
No long description provided.
Installation
dagger install github.com/camptocamp/daggerverse/busybox@ca4521be520700d7a8496c20c7bccafe2013d400Entrypoint
Return Type
Busybox Example
dagger -m github.com/camptocamp/daggerverse/busybox@ca4521be520700d7a8496c20c7bccafe2013d400 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@ca4521be520700d7a8496c20c7bccafe2013d400 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()
}