mirror of
https://github.com/rancher/cli.git
synced 2026-02-05 09:48:36 +01:00
7 lines
146 B
Docker
7 lines
146 B
Docker
FROM alpine:3.13
|
|
RUN apk add --no-cache ca-certificates openssh-client
|
|
COPY rancher /usr/bin/
|
|
WORKDIR /mnt
|
|
ENTRYPOINT ["rancher"]
|
|
CMD ["--help"]
|