singularity
No long description provided.
Installation
dagger install github.com/shykes/x/singularity@481fa1ff383fddc13a2a27249ed31dcba3d2c09bEntrypoint
Return Type
Singularity Example
dagger -m github.com/shykes/x/singularity@481fa1ff383fddc13a2a27249ed31dcba3d2c09b call \
func (m *MyModule) Example() *dagger.Singularity  {
	return dag.
			Singularity()
}@function
def example() -> dagger.Singularity:
	return (
		dag.singularity()
	)@func()
example(): Singularity {
	return dag
		.singularity()
}Types
Singularity 🔗
import() 🔗
Import a dagger container into a Singularity SIF file
Return Type
File !Arguments
| Name | Type | Default Value | Description | 
|---|---|---|---|
| source | Container ! | - | No description provided | 
Example
dagger -m github.com/shykes/x/singularity@481fa1ff383fddc13a2a27249ed31dcba3d2c09b call \
 import --source IMAGE:TAGfunc (m *MyModule) Example(source *dagger.Container) *dagger.File  {
	return dag.
			Singularity().
			Import(source)
}@function
def example(source: dagger.Container) -> dagger.File:
	return (
		dag.singularity()
		.import_(source)
	)@func()
example(source: Container): File {
	return dag
		.singularity()
		.import(source)
}