#Not sure if anyone else has run into
1 messages · Page 1 of 1 (latest)
My script itself is just the following:
async def test():
async with dagger.Connection(dagger.Config(log_output=sys.stderr)) as client:
src = client.host().directory('.')
python = (
client.container()
.from_('openjdk:8-jdk-alpine')
.with_directory('/src', src)
.with_workdir('/src')
.with_exec(['/bin/sh', './gradlew', 'tasks', '--debug'])
)
await python.sync()
anyio.run(test)
@hollow zenith I believe I have seen something like that in the past. I'll look for the issue.
Similar to this at all?
https://github.com/dagger/dagger/issues/5287