docker-wireguard/Dockerfile

9 lines
286 B
Docker
Raw Normal View History

2019-02-14 21:03:36 +01: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"]