Dockerfile.amd64 356 B

12345678910111213
  1. FROM frolvlad/alpine-glibc
  2. MAINTAINER Tom Denham <tom@tigera.io>
  3. ENV FLANNEL_ARCH=amd64
  4. RUN apk add --no-cache iproute2 net-tools ca-certificates && update-ca-certificates
  5. COPY dist/flanneld-$FLANNEL_ARCH /opt/bin/flanneld
  6. COPY dist/iptables-$FLANNEL_ARCH /usr/local/bin/iptables
  7. COPY dist/mk-docker-opts.sh /opt/bin/
  8. ENTRYPOINT ["/opt/bin/flanneld"]