docker-wireguard/Dockerfile

9 lines
286 B
Text
Raw Normal View History

2019-02-14 12:03:36 -08:00
FROM ubuntu:latest
RUN apt-get update && apt-get install -y software-properties-common openresolv iptables iproute2
RUN add-apt-repository ppa:wireguard/wireguard && apt-get update && apt-get install -y wireguard-tools
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]