#Not sure if anyone else has run into

1 messages · Page 1 of 1 (latest)

hollow zenith
#

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)
polar shadow
#

@hollow zenith I believe I have seen something like that in the past. I'll look for the issue.