6 lines
143 B
Docker
6 lines
143 B
Docker
FROM alpine:latest
|
|
RUN apk add wireguard-tools iptables
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
CMD [ "/entrypoint.sh" ]
|