universe: docker: simplify

Signed-off-by: Solomon Hykes <solomon@dagger.io>
This commit is contained in:
Solomon Hykes 2021-06-03 10:44:10 +00:00
parent ca03cd6e58
commit d96e4f5575

View File

@ -1,18 +1,16 @@
package docker
import (
"dagger.io/dagger/op"
"dagger.io/alpine"
)
#Client: #up: [
op.#Load & {
from: alpine.#Image & {
package: bash: true
package: jq: true
package: curl: true
package: "openssh-client": true
package: "docker-cli": true
}
},
]
// A container image to run the Docker client
#Client: alpine.#Image & {
package: {
bash: true
jq: true
curl: true
"openssh-client": true
"docker-cli": true
}
}