Dagger
Search

GeitRavi

No long description provided.

Installation

dagger install github.com/jpadams/GeitRavi@83b5b5df19a2664e11b42d3b6168dbfcfc10a31f

Entrypoint

Return Type
GeitRavi
Example
dagger -m github.com/jpadams/GeitRavi@83b5b5df19a2664e11b42d3b6168dbfcfc10a31f call \
func (m *myModule) example() *GeitRavi  {
	return dag.
			GeitRavi()
}
@function
def example() -> dag.GeitRavi:
	return (
		dag.geit_ravi()
	)
@func()
example(): GeitRavi {
	return dag
		.geitRavi()
}

Types

GeitRavi 🔗

buildInScratch() 🔗

Returns a scratch container containing a go binary built from git project

Return Type
Container !
Example
dagger -m github.com/jpadams/GeitRavi@83b5b5df19a2664e11b42d3b6168dbfcfc10a31f call \
 build-in-scratch
func (m *myModule) example() *Container  {
	return dag.
			GeitRavi().
			BuildInScratch()
}
@function
def example() -> dagger.Container:
	return (
		dag.geit_ravi()
		.build_in_scratch()
	)
@func()
example(): Container {
	return dag
		.geitRavi()
		.buildInScratch()
}