Kyle Penfound
Kyle Penfound
Repro: ```go func (r *Repro) Run(ctx context.Context) *Container { redis := dag.Container(). From("redis"). WithExposedPort(6379). AsService() cli := dag.Container(). From("redis"). WithoutEntrypoint(). WithServiceBinding("redis", redis) ctrA := cli.WithExec([]string{"sh", "-c", "redis-cli -h redis info...
My above repro is fixed on `0.11.1`. Is yours fixed as well @vikram-dagger ?
This is an interesting one! It looks like the module you're trying to install, `jpadams/daggerverse/trivy`, is clashing with the name of your module, `trivy`. A workaround for now is to...
@jedevc yeah this definitely feels like it's a `GOOS` issue. I'll update the module!
I've added the optional `os` arg to the build command: `dagger -m github.com/kpenfound/dagger-modules/golang --proj https://github.com/dagger/dagger call build --args ./cmd/dagger --os darwin export --path ./my-dagger-build`
@jedevc in general it would be useful to query the host os/arch for a lot of reasons, since within the module sandbox it'll always be `linux`
This should also only return an error if something actually went wrong. If the file/directory doesn't exist, this should return `False` and not error Maybe stating the obvious, but for...
Related (maybe dupe, maybe not): - https://github.com/dagger/dagger/issues/3764
Yeah, the proper fix is to update the action to a "real" action instead of a composite action. Composite actions aren't allowed to have post steps for some reason. A...
Engine-stop is now gone 👍