加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile.s390x 592 Bytes
一键复制 编辑 原始数据 按行查看 历史
Manuel Buil 提交于 2021-05-28 15:11 . Upgrade Alpine version
FROM s390x/alpine:3.13
LABEL maintainer="Tom Denham <tom@tigera.io>"
ENV FLANNEL_ARCH=s390x
ADD dist/qemu-$FLANNEL_ARCH-static /usr/bin/qemu-$FLANNEL_ARCH-static
RUN apk add --no-cache iproute2 net-tools ca-certificates iptables strongswan && update-ca-certificates
RUN apk add wireguard-tools --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community
COPY dist/flanneld-$FLANNEL_ARCH /opt/bin/flanneld
COPY dist/mk-docker-opts.sh /opt/bin/
COPY dist/iptables-wrapper-installer.sh /
RUN /iptables-wrapper-installer.sh --no-sanity-check
ENTRYPOINT ["/opt/bin/flanneld"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化