b1ed40ffed
- Push to private registry - Output ref and digest - Update doc - Add tests to universe.bats Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
27 lines
368 B
CUE
27 lines
368 B
CUE
package docker
|
|
|
|
import (
|
|
"dagger.io/docker"
|
|
"dagger.io/dagger/op"
|
|
"dagger.io/alpine"
|
|
)
|
|
|
|
ref: string @dagger(input)
|
|
|
|
TestPull: {
|
|
pull: docker.#Pull & {from: ref}
|
|
|
|
check: #up: [
|
|
op.#Load & {from: alpine.#Image},
|
|
op.#Exec & {
|
|
always: true
|
|
args: [
|
|
"sh", "-c", """
|
|
grep -q "test" /src/test.txt
|
|
""",
|
|
]
|
|
mount: "/src": from: pull
|
|
},
|
|
]
|
|
}
|