result 319 B

1234567891011
  1. (from "ubuntu:14.04")
  2. (maintainer "Erik Hollensbe <erik@hollensbe.org>")
  3. (run "apt-get update && apt-get install nginx-full -y")
  4. (run "rm -rf /etc/nginx")
  5. (add "etc" "/etc/nginx")
  6. (run "chown -R root:root /etc/nginx")
  7. (run "/usr/sbin/nginx -qt")
  8. (run "mkdir /www")
  9. (cmd "/usr/sbin/nginx")
  10. (volume "/www")
  11. (expose "80")