├── LICENSE ├── README.md ├── multibuild ├── .gitignore ├── build.py ├── go.mod └── main.go ├── poetry.lock ├── pyproject.toml ├── say.py ├── say_sync.py ├── test_concurrency.py ├── test_multiple.py └── test_simple.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helderco/dagger-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helderco/dagger-examples/HEAD/README.md -------------------------------------------------------------------------------- /multibuild/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /multibuild/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helderco/dagger-examples/HEAD/multibuild/build.py -------------------------------------------------------------------------------- /multibuild/go.mod: -------------------------------------------------------------------------------- 1 | module hello 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /multibuild/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helderco/dagger-examples/HEAD/multibuild/main.go -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helderco/dagger-examples/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helderco/dagger-examples/HEAD/pyproject.toml -------------------------------------------------------------------------------- /say.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helderco/dagger-examples/HEAD/say.py -------------------------------------------------------------------------------- /say_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helderco/dagger-examples/HEAD/say_sync.py -------------------------------------------------------------------------------- /test_concurrency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helderco/dagger-examples/HEAD/test_concurrency.py -------------------------------------------------------------------------------- /test_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helderco/dagger-examples/HEAD/test_multiple.py -------------------------------------------------------------------------------- /test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helderco/dagger-examples/HEAD/test_simple.py --------------------------------------------------------------------------------