mirror of
https://github.com/cnrancher/kube-explorer.git
synced 2025-09-17 15:38:21 +00:00
8 lines
272 B
Docker
8 lines
272 B
Docker
FROM registry.suse.com/bci/bci-base:15.6
|
|
ARG TARGETARCH
|
|
ARG TARGETOS
|
|
ENV ARCH=${TARGETARCH:-"amd64"} OS=${TARGETOS:-"linux"}
|
|
RUN zypper install -y catatonit
|
|
COPY kube-explorer-${OS}-${ARCH} /usr/bin/kube-explorer
|
|
ENTRYPOINT [ "/usr/bin/catatonit", "--", "kube-explorer" ]
|