7 lines
228 B
Python
7 lines
228 B
Python
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)")
|