Add example build to compile C code

This commit is contained in:
2022-10-23 18:20:23 -06:00
parent 1c532a154f
commit 01fa7da5d4
4 changed files with 226 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import cursorius.executors.docker as docker
print("hello, world")
d = docker.DockerBuilder.from_dockerfile("builder", "Dockerfile")
print(d.run("/main"))
print("hello, world")