mirror of
https://github.com/rancher/k3k.git
synced 2026-03-06 03:31:17 +00:00
* wip drop dapper * added tests, validate * fix kubebuilder assets * debug * fix maybe * export global * export global 2 * fix goreleaser * dev doc section improved * crd and docs * drop dapper * drop unused tmpl * added help * typos, and added `build-crds` target to default
10 lines
128 B
Docker
10 lines
128 B
Docker
FROM alpine
|
|
|
|
ARG BIN_K3K=bin/k3k
|
|
ARG BIN_K3KCLI=bin/k3kcli
|
|
|
|
COPY ${BIN_K3K} /usr/bin/
|
|
COPY ${BIN_K3KCLI} /usr/bin/
|
|
|
|
CMD ["k3k"]
|