import cursorius.executors.docker as docker print("hello, world from python (#1)") with docker.DockerBuilder.from_dockerfile("builder", "Dockerfile").run() as d: print(d.run("/main")) print("hello, world from python (#2)")