mirror of
https://github.com/dagger/dagger-for-github.git
synced 2026-01-04 05:49:58 +11:00
- Remove AGE key setup - Update README to use `dagger do` - Update tests to dagger 0.2 Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
29 lines
562 B
CUE
Executable file
Generated
29 lines
562 B
CUE
Executable file
Generated
// Helpers to run python programs
|
|
package python
|
|
|
|
import (
|
|
"universe.dagger.io/docker"
|
|
|
|
"universe.dagger.io/alpine"
|
|
)
|
|
|
|
// Run a python script in a container
|
|
#Run: {
|
|
// Contents of the python script
|
|
script: string
|
|
|
|
// FIXME: don't pass the script as argument: write to filesystme instead
|
|
docker.#Run & {
|
|
command: {
|
|
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"
|
|
}
|
|
}
|
|
}
|