add vpn container

This commit is contained in:
Owl 2025-02-03 14:05:25 +07:00
parent 219e28b420
commit d0ab7b44ba
3 changed files with 38 additions and 0 deletions

9
Dockerfile.vpn Normal file
View file

@ -0,0 +1,9 @@
FROM alpine:latest
RUN apk add --no-cache openvpn bash iptables curl
RUN mkdir -p /etc/openvpn
COPY ./config.ovpn /etc/openvpn/config.ovpn
CMD ["openvpn", "--config", "/etc/openvpn/config.ovpn"]