7 lines
211 B
Python
7 lines
211 B
Python
import cursorius.executors.docker as docker
|
|
|
|
print("hello, world from python (#1)")
|
|
d = docker.DockerBuilder.from_dockerfile("builder", "Dockerfile")
|
|
print(d.run("/main"))
|
|
print("hello, world from python (#2)")
|