Dockerfile.amd64 498 B

123456789101112131415
  1. FROM alpine:3.13
  2. LABEL maintainer="Tom Denham <tom@tigera.io>"
  3. ENV FLANNEL_ARCH=amd64
  4. RUN apk add --no-cache iproute2 net-tools ca-certificates iptables strongswan && update-ca-certificates
  5. RUN apk add wireguard-tools --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community
  6. COPY dist/flanneld-$FLANNEL_ARCH /opt/bin/flanneld
  7. COPY dist/mk-docker-opts.sh /opt/bin/
  8. COPY dist/iptables-wrapper-installer.sh /
  9. RUN /iptables-wrapper-installer.sh
  10. ENTRYPOINT ["/opt/bin/flanneld"]