docker-wireguard/Dockerfile

9 lines
172 B
Text
Raw Normal View History

2023-09-29 16:49:53 -07:00
FROM alpine:3
2019-02-14 12:03:36 -08:00
RUN apk add --no-cache \
2023-09-29 16:49:53 -07:00
findutils openresolv iptables ip6tables iproute2 wireguard-tools
2019-02-14 12:03:36 -08:00
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]