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