Dagger
Search

alpine

A Dagger Module to integrate with Alpine Linux

Installation

dagger install github.com/aluzzardi/dagger/modules/alpine@aec13cdf85e7cc7aa5a933e3c73a2604f6e73b01

Entrypoint

Return Type
Alpine !
Arguments
NameTypeDescription
archString Hardware architecture to build for
branchString Alpine branch to download packages from
packages[String ! ] APK packages to install
distroEnum Alpine distribution to use
Example
dagger -m github.com/aluzzardi/dagger/modules/alpine@aec13cdf85e7cc7aa5a933e3c73a2604f6e73b01 call \
func (m *myModule) example() *Alpine  {
	return dag.
			Alpine()
}
@function
def example() -> dag.Alpine:
	return (
		dag.alpine()
	)
@func()
example(): Alpine {
	return dag
		.alpine()
}

Types

Alpine 🔗

An Alpine Linux configuration

distro() 🔗

The distro to use

Return Type
Enum !
Example
dagger -m github.com/aluzzardi/dagger/modules/alpine@aec13cdf85e7cc7aa5a933e3c73a2604f6e73b01 call \
 distro
func (m *myModule) example()   {
	return dag.
			Alpine().
			Distro()
}
@function
def example() -> :
	return (
		dag.alpine()
		.distro()
	)
@func()
example():  {
	return dag
		.alpine()
		.distro()
}

arch() 🔗

The hardware architecture to build for

Return Type
String !
Example
dagger -m github.com/aluzzardi/dagger/modules/alpine@aec13cdf85e7cc7aa5a933e3c73a2604f6e73b01 call \
 arch
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			Alpine().
			Arch(ctx)
}
@function
async def example() -> str:
	return await (
		dag.alpine()
		.arch()
	)
@func()
async example(): Promise<string> {
	return dag
		.alpine()
		.arch()
}

branch() 🔗

The Alpine branch to download packages from

Return Type
String !
Example
dagger -m github.com/aluzzardi/dagger/modules/alpine@aec13cdf85e7cc7aa5a933e3c73a2604f6e73b01 call \
 branch
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			Alpine().
			Branch(ctx)
}
@function
async def example() -> str:
	return await (
		dag.alpine()
		.branch()
	)
@func()
async example(): Promise<string> {
	return dag
		.alpine()
		.branch()
}

packages() 🔗

The APK packages to install

Return Type
[String ! ] !
Example
dagger -m github.com/aluzzardi/dagger/modules/alpine@aec13cdf85e7cc7aa5a933e3c73a2604f6e73b01 call \
 packages
func (m *myModule) example(ctx context.Context) []string  {
	return dag.
			Alpine().
			Packages(ctx)
}
@function
async def example() -> List[str]:
	return await (
		dag.alpine()
		.packages()
	)
@func()
async example(): Promise<string[]> {
	return dag
		.alpine()
		.packages()
}

container() 🔗

Build an Alpine Linux container

Return Type
Container !
Example
dagger -m github.com/aluzzardi/dagger/modules/alpine@aec13cdf85e7cc7aa5a933e3c73a2604f6e73b01 call \
 container
func (m *myModule) example() *Container  {
	return dag.
			Alpine().
			Container()
}
@function
def example() -> dagger.Container:
	return (
		dag.alpine()
		.container()
	)
@func()
example(): Container {
	return dag
		.alpine()
		.container()
}