apko
Builds containers from simple lists of packages using the Apko CLI.
Installation
dagger install github.com/jedevc/daggerverse-vito/apko@c0f18ae12d4fb98d99b83592168033e3286c94f2
Entrypoint
Return Type
Apko !
Example
dagger -m github.com/jedevc/daggerverse-vito/apko@c0f18ae12d4fb98d99b83592168033e3286c94f2 call \
func (m *myModule) example() *Apko {
return dag.
Apko()
}
@function
def example() -> dag.Apko:
return (
dag.apko()
)
@func()
example(): Apko {
return dag
.apko()
}
Types
Apko 🔗
An Apko image config and container builder.
wolfi() 🔗
Alpine returns a Container with the specified packages installed from Alpine repositories.
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
packages | [String ! ] ! | - | No description provided |
Example
dagger -m github.com/jedevc/daggerverse-vito/apko@c0f18ae12d4fb98d99b83592168033e3286c94f2 call \
wolfi --packages string1 --packages string2
func (m *myModule) example(packages []string) *Container {
return dag.
Apko().
Wolfi(packages)
}
@function
def example(packages: List[str]) -> dagger.Container:
return (
dag.apko()
.wolfi(packages)
)
@func()
example(packages: string[]): Container {
return dag
.apko()
.wolfi(packages)
}
withWolfi() 🔗
Adds the Wolfi repository, keyring, and wolfi-base package.
Return Type
Apko !
Example
dagger -m github.com/jedevc/daggerverse-vito/apko@c0f18ae12d4fb98d99b83592168033e3286c94f2 call \
with-wolfi
func (m *myModule) example() *Apko {
return dag.
Apko().
WithWolfi()
}
@function
def example() -> dag.Apko:
return (
dag.apko()
.with_wolfi()
)
@func()
example(): Apko {
return dag
.apko()
.withWolfi()
}
withPackages() 🔗
Adds the specified packages to the list.
Return Type
Apko !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
packages | [String ! ] ! | - | No description provided |
Example
dagger -m github.com/jedevc/daggerverse-vito/apko@c0f18ae12d4fb98d99b83592168033e3286c94f2 call \
with-packages --packages string1 --packages string2
func (m *myModule) example(packages []string) *Apko {
return dag.
Apko().
WithPackages(packages)
}
@function
def example(packages: List[str]) -> dag.Apko:
return (
dag.apko()
.with_packages(packages)
)
@func()
example(packages: string[]): Apko {
return dag
.apko()
.withPackages(packages)
}
withArchs() 🔗
Configures the architectures to build.
Return Type
Apko !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
archs | [String ! ] ! | - | No description provided |
Example
dagger -m github.com/jedevc/daggerverse-vito/apko@c0f18ae12d4fb98d99b83592168033e3286c94f2 call \
with-archs --archs string1 --archs string2
func (m *myModule) example(archs []string) *Apko {
return dag.
Apko().
WithArchs(archs)
}
@function
def example(archs: List[str]) -> dag.Apko:
return (
dag.apko()
.with_archs(archs)
)
@func()
example(archs: string[]): Apko {
return dag
.apko()
.withArchs(archs)
}
asContainer() 🔗
Builds the configured image and returns it as a Container.
Return Type
Container !
Example
dagger -m github.com/jedevc/daggerverse-vito/apko@c0f18ae12d4fb98d99b83592168033e3286c94f2 call \
as-container
func (m *myModule) example() *Container {
return dag.
Apko().
AsContainer()
}
@function
def example() -> dagger.Container:
return (
dag.apko()
.as_container()
)
@func()
example(): Container {
return dag
.apko()
.asContainer()
}
alpine() 🔗
Alpine returns a Container with the specified packages installed from Alpine repositories.
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
branch | String ! | "edge" | No description provided |
packages | [String ! ] ! | - | No description provided |
Example
dagger -m github.com/jedevc/daggerverse-vito/apko@c0f18ae12d4fb98d99b83592168033e3286c94f2 call \
alpine --branch string --packages string1 --packages string2
func (m *myModule) example(branch string, packages []string) *Container {
return dag.
Apko().
Alpine(branch, packages)
}
@function
def example(branch: str, packages: List[str]) -> dagger.Container:
return (
dag.apko()
.alpine(branch, packages)
)
@func()
example(branch: string, packages: string[]): Container {
return dag
.apko()
.alpine(branch, packages)
}
withAlpine() 🔗
Adds the Alpine repository and alpine-base package.
Return Type
Apko !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
branch | String ! | "edge" | No description provided |
Example
dagger -m github.com/jedevc/daggerverse-vito/apko@c0f18ae12d4fb98d99b83592168033e3286c94f2 call \
with-alpine --branch string
func (m *myModule) example(branch string) *Apko {
return dag.
Apko().
WithAlpine(branch)
}
@function
def example(branch: str) -> dag.Apko:
return (
dag.apko()
.with_alpine(branch)
)
@func()
example(branch: string): Apko {
return dag
.apko()
.withAlpine(branch)
}