docker-wireguard/Dockerfile

9 lines
172 B
Docker
Raw Normal View History

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