Dockerfile.arm64 365 B

123456789101112
  1. FROM arm64v8/alpine
  2. LABEL maintainer="Tom Denham <tom@tigera.io>"
  3. ENV FLANNEL_ARCH=arm64
  4. ADD dist/qemu-aarch64-static /usr/bin/qemu-aarch64-static
  5. RUN apk add --no-cache iproute2 net-tools ca-certificates iptables && update-ca-certificates
  6. COPY dist/flanneld-$FLANNEL_ARCH /opt/bin/flanneld
  7. COPY dist/mk-docker-opts.sh /opt/bin/
  8. ENTRYPOINT ["/opt/bin/flanneld"]