加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/jenkins-x/jx
克隆/下载
Dockerfile-kubectl 688 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM alpine:3.16.2
ARG VERSION
ARG TARGETARCH
ARG TARGETOS
LABEL org.opencontainers.image.authors="Linux Foundation" \
org.opencontainers.image.description="Kubectl docker image used by Jenkins X" \
org.opencontainers.image.ref.name="alpine:3.16.2" \
org.opencontainers.image.source="https://github.com/jenkins-x/jx/blob/main/Dockerfile-kubectl" \
org.opencontainers.image.title="kubectl"
RUN apk add --update --no-cache curl &&\
adduser -D -u 1001 jx
RUN curl -LO "https://dl.k8s.io/release/v${VERSION}/bin/${TARGETOS}/${TARGETARCH}/kubectl" &&\
chmod +x kubectl && \
mv kubectl /usr/local/bin
USER 1001
ENTRYPOINT [ "kubectl" ]
CMD [ "--help" ]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化