You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 483B

12345678910111213141516171819202122
  1. FROM robinthoni/debian-multiarch:jessie
  2. ARG CONFIG_DIR=/etc/default/config-files/
  3. RUN apt-get update &&\
  4. apt-get install -y ssmtp openvpn openvpn-auth-ldap openvpn-auth-radius ldap-utils &&\
  5. apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
  6. rm /etc/cron.*/*
  7. COPY ./vars-vars /etc/vars-vars
  8. COPY ./vars-files /etc/vars-files
  9. COPY ./common.sh /common.sh
  10. COPY run.sh /run.sh
  11. RUN mkdir "${CONFIG_DIR}"
  12. COPY ./config "${CONFIG_DIR}"
  13. CMD ["/run.sh"]