2019-05-16 17:07:58 +00:00
|
|
|
ARG FROM=alpine
|
2019-05-06 23:49:55 +00:00
|
|
|
FROM alpine AS cni
|
|
|
|
RUN apk add --no-cache curl && \
|
|
|
|
curl -Lo cni.tar.gz https://github.com/containernetworking/plugins/releases/download/v0.7.5/cni-plugins-amd64-v0.7.5.tgz && \
|
|
|
|
tar -xf cni.tar.gz
|
|
|
|
|
2019-05-16 17:07:58 +00:00
|
|
|
FROM $FROM
|
|
|
|
LABEL maintainer="squat <lserven@gmail.com>"
|
2019-01-18 01:50:10 +00:00
|
|
|
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && \
|
|
|
|
apk add --no-cache ipset iptables wireguard-tools@testing
|
2019-05-06 23:49:55 +00:00
|
|
|
COPY --from=cni bridge host-local loopback portmap /opt/cni/bin/
|
2019-05-16 17:07:58 +00:00
|
|
|
ARG GOARCH
|
|
|
|
COPY bin/$GOARCH/kg /opt/bin/
|
2019-01-18 01:50:10 +00:00
|
|
|
ENTRYPOINT ["/opt/bin/kg"]
|