Dockerfile 211 B

12345678910
  1. FROM ubuntu:22.04
  2. ENV DEBIAN_FRONTEND noninteractive
  3. RUN apt-get update && apt-get -y install openvpn && apt-get clean
  4. ADD openvpn_init.sh /sbin/
  5. RUN chmod +x /sbin/openvpn_init.sh
  6. CMD /sbin/openvpn_init.sh