A new CUE standard library for the Europa release

Signed-off-by: Solomon Hykes <solomon@dagger.io>
This commit is contained in:
Solomon Hykes
2021-11-04 07:05:24 +00:00
committed by Solomon Hykes
parent a83987841d
commit e7f1649fe6
41 changed files with 1516 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
// Helpers to run python programs
package python
import (
"universe.dagger.io/docker"
"universe.dagger.io/alpine"
)
// Run a python script in a container
#Run: docker.#Run & {
script: string
cmd: {
name: "python"
flags: "-c": script
}
// As a convenience, image defaults to a ready-to-use python environment
image: docker.#Image | *_defaultImage
_defaultImage: alpine.#Image & {
packages: python: version: "3"
}
}