32b48f7dce
Signed-off-by: Vasek - Tom C <tom.chauveau@epitech.eu>
44 lines
781 B
CUE
44 lines
781 B
CUE
package test
|
|
|
|
import (
|
|
"dagger.io/dagger"
|
|
"dagger.io/dagger/engine"
|
|
"universe.dagger.io/docker"
|
|
"universe.dagger.io/alpine"
|
|
)
|
|
|
|
// This test verify that we can correctly build an image
|
|
// using docker.#Build with multiple steps executed during
|
|
// the building process
|
|
dagger.#Plan & {
|
|
actions: {
|
|
image: docker.#Build & {
|
|
steps: [
|
|
alpine.#Build,
|
|
docker.#Run & {
|
|
script: """
|
|
echo -n hello > /bar.txt
|
|
"""
|
|
},
|
|
docker.#Run & {
|
|
script: """
|
|
echo -n $(cat /bar.txt) world > /foo.txt
|
|
"""
|
|
},
|
|
docker.#Run & {
|
|
script: """
|
|
echo -n $(cat /foo.txt) >> /test.txt
|
|
"""
|
|
},
|
|
]
|
|
}
|
|
|
|
verify: engine.#ReadFile & {
|
|
input: image.output.rootfs
|
|
path: "/test.txt"
|
|
} & {
|
|
contents: "hello world"
|
|
}
|
|
}
|
|
}
|