Dagger
Search

apko

Builds containers from simple lists of packages using the Apko CLI.

Installation

dagger install github.com/vito/daggerverse/apko@v0.1.6

Entrypoint

Return Type
Apko !
Example
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.

withAlpine()

Adds the Alpine repository and alpine-base package.

Return Type
Apko !
Arguments
NameTypeDefault ValueDescription
branchString !"edge"No description provided
Example
dagger -m github.com/vito/daggerverse/apko@bb716370f574a407415f97e80cc794561aedce53 call \
 with-alpine --branch string \
 as-container
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)
}

asContainer()

Builds the configured image and returns it as a Container.

Return Type
Container !
Example
dagger -m github.com/vito/daggerverse/apko@bb716370f574a407415f97e80cc794561aedce53 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()
}

wolfi()

Alpine returns a Container with the specified packages installed from Alpine repositories.

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
packages[String ! ] !-No description provided
Example
dagger -m github.com/vito/daggerverse/apko@bb716370f574a407415f97e80cc794561aedce53 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)
}

alpine()

Alpine returns a Container with the specified packages installed from Alpine repositories.

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
branchString !"edge"No description provided
packages[String ! ] !-No description provided
Example
dagger -m github.com/vito/daggerverse/apko@bb716370f574a407415f97e80cc794561aedce53 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)
}

withWolfi()

Adds the Wolfi repository, keyring, and wolfi-base package.

Return Type
Apko !
Example
dagger -m github.com/vito/daggerverse/apko@bb716370f574a407415f97e80cc794561aedce53 call \
 with-wolfi \
 as-container
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
NameTypeDefault ValueDescription
packages[String ! ] !-No description provided
Example
dagger -m github.com/vito/daggerverse/apko@bb716370f574a407415f97e80cc794561aedce53 call \
 with-packages --packages string1 --packages string2 \
 as-container
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
NameTypeDefault ValueDescription
archs[String ! ] !-No description provided
Example
dagger -m github.com/vito/daggerverse/apko@bb716370f574a407415f97e80cc794561aedce53 call \
 with-archs --archs string1 --archs string2 \
 as-container
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)
}