Dockerfile.arm 808 B

1234567891011121314151617181920
  1. FROM arm32v6/alpine
  2. LABEL maintainer="Tom Denham <tom@tigera.io>"
  3. ENV FLANNEL_ARCH=arm
  4. ADD dist/qemu-$FLANNEL_ARCH-static /usr/bin/qemu-$FLANNEL_ARCH-static
  5. RUN apk add --no-cache iproute2 net-tools ca-certificates iptables && update-ca-certificates
  6. RUN apk add wireguard-tools --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing
  7. COPY dist/flanneld-$FLANNEL_ARCH /opt/bin/flanneld
  8. COPY dist/mk-docker-opts.sh /opt/bin/
  9. COPY dist/libpthread.so.0-$FLANNEL_ARCH /lib/libpthread.so.0
  10. COPY dist/ld64.so.1-$FLANNEL_ARCH /lib/ld64.so.1
  11. COPY dist/libc.so.6-$FLANNEL_ARCH /lib/libc.so.6
  12. COPY dist/strongswan-$FLANNEL_ARCH /usr/local/strongswan-arm
  13. COPY dist/libatomic.so.1-$FLANNEL_ARCH /lib/libatomic.so.1
  14. COPY dist/libdl.so.2-$FLANNEL_ARCH /lib/libdl.so.2
  15. ENTRYPOINT ["/opt/bin/flanneld"]