Files
wg-ui/Dockerfile.debug
T
2020-12-16 18:14:49 +01:00

12 lines
505 B
Docker

FROM embarkstudios/wireguard-ui AS latest
FROM ubuntu:20.04
RUN apt-get update -y && \
apt-get install -y software-properties-common iptables curl iproute2 ifupdown iputils-ping && \
echo resolvconf resolvconf/linkify-resolvconf boolean false | debconf-set-selections && \
echo "REPORT_ABSENT_SYMLINK=no" >> /etc/default/resolvconf && \
apt-get install resolvconf
RUN apt-get install -qy --no-install-recommends wireguard
COPY --from=latest /wireguard-ui /
ENTRYPOINT [ "/wireguard-ui" ]