d96e4f5575
Signed-off-by: Solomon Hykes <solomon@dagger.io>
17 lines
263 B
CUE
17 lines
263 B
CUE
package docker
|
|
|
|
import (
|
|
"dagger.io/alpine"
|
|
)
|
|
|
|
// A container image to run the Docker client
|
|
#Client: alpine.#Image & {
|
|
package: {
|
|
bash: true
|
|
jq: true
|
|
curl: true
|
|
"openssh-client": true
|
|
"docker-cli": true
|
|
}
|
|
}
|