netmaker/docker/Dockerfile-userspace

27 lines
647 B
Plaintext
Raw Normal View History

ARG NM_VERSION=
FROM gravitl/builder as builder
RUN apk add --update git build-base libmnl-dev iptables
WORKDIR /root/
RUN git clone https://git.zx2c4.com/wireguard-go && \
cd wireguard-go && \
make && \
make install
2021-10-15 10:03:05 +08:00
ENV WITH_WGQUICK=yes
RUN git clone https://git.zx2c4.com/wireguard-tools && \
cd wireguard-tools && \
cd src && \
make && \
make install
FROM gravitl/netmaker:${NM_VERSION}
2021-10-15 10:03:05 +08:00
RUN apk add --no-cache --update bash libmnl iptables openresolv iproute2
COPY --from=builder /usr/bin/wireguard-go /usr/bin/wg* /usr/bin/
2021-11-17 11:18:24 +08:00
COPY scripts/netclient.sh ./entrypoint.sh
2021-10-15 10:03:05 +08:00
ENTRYPOINT ["/bin/sh", "./entrypoint.sh"]