9 lines
286 B
Docker
9 lines
286 B
Docker
|
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"]
|