diff options
author | Cody Hiar <codyfh@gmail.com> | 2018-11-12 19:19:50 +0000 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2018-11-12 19:19:50 +0000 |
commit | 7686d0ca2e637fd004e4f716f0ba10bbf9a24b88 (patch) | |
tree | e1ea89197e727d6e5462f9f8e52aa1271882f9cd /Dockerfile | |
parent | c14a85a4eec42178469b5f410d7e4c133431fa52 (diff) |
Initial commit
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 |