Dockerfile.arm64 582 B

12345678910111213141516
  1. FROM arm64v8/alpine:3.13
  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 strongswan && update-ca-certificates
  6. RUN apk add wireguard-tools --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community
  7. COPY dist/flanneld-$FLANNEL_ARCH /opt/bin/flanneld
  8. COPY dist/mk-docker-opts.sh /opt/bin/
  9. COPY dist/iptables-wrapper-installer.sh /
  10. RUN /iptables-wrapper-installer.sh --no-sanity-check
  11. ENTRYPOINT ["/opt/bin/flanneld"]