Dockerfile 198 B

123456789
  1. FROM alpine:3.9
  2. RUN apk add --no-cache openvpn
  3. VOLUME /hackthebox
  4. WORKDIR /hackthebox
  5. CMD ["openvpn", "--config", "/hackthebox/vpn-config.ovpn", \
  6. "--user", "openvpn", "--group", "openvpn"]