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,21 @@
// Helpers to run bash commands in containers
package bash
import (
"universe.dagger.io/docker"
)
// Run a bash command or script in a container
#Run: docker.#Run & {
script: string
cmd: {
name: "bash"
flags: {
"-c": script
"--noprofile": true
"--norc": true
"-e": true
"-o": "pipefail"
}
}
}