This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/tests/stdlib/alpine/alpine.cue
Sam Alba f6aea7e529 curl: do not hardcode version requirement
Signed-off-by: Sam Alba <sam.alba@gmail.com>
2021-05-27 14:31:57 +02:00

45 lines
622 B
CUE

package alpine
import (
"dagger.io/alpine"
"dagger.io/dagger/op"
)
TestImageVersion: {
image: alpine.#Image & {
// install an old version on purpose
version: "3.10.9"
}
test: #up: [
op.#Load & {from: image},
op.#Exec & {
args: [
"sh",
"-ec",
"""
test "$(cat /etc/alpine-release)" = 3.10.9
""",
]
},
]
}
TestPackageInstall: {
image: alpine.#Image & {
package: jq: true
package: curl: true
version: "3.13"
}
test: #up: [
op.#Load & {from: image},
op.#Exec & {
args: ["jq", "--version"]
},
op.#Exec & {
args: ["sh", "-ec", "curl --version"]
},
]
}