diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f8581c1 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM busybox + +MAINTAINER Cody Hiar <codyfh@gmail.com + +ADD index.html /opt/index.html +ADD startup.sh /opt/startup.sh + +EXPOSE 8000 + +CMD /opt/startup.sh |