Dockerfile 520 B

1234567891011121314151617
  1. FROM ubuntu:18.04
  2. MAINTAINER Fmstrat <[email protected]>
  3. ENV DEBIAN_FRONTEND noninteractive
  4. RUN apt-get update && apt-get upgrade -y
  5. # Install all apps
  6. # The third line is for multi-site config (ping is for testing later)
  7. RUN apt-get install -y pkg-config
  8. RUN apt-get install -y attr acl samba smbclient ldap-utils winbind libnss-winbind libpam-winbind krb5-user krb5-kdc supervisor
  9. RUN apt-get install -y openvpn inetutils-ping
  10. # Set up script and run
  11. ADD init.sh /init.sh
  12. RUN chmod 755 /init.sh
  13. CMD /init.sh setup