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/stdlib/docker/client.cue

17 lines
263 B
CUE
Raw Normal View History

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
}
}