commit 43140e12fbe2461d9585534706f878fd188327dc Author: Adolfo Delorenzo Date: Sun Oct 10 14:58:44 2021 -0600 first commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f66a46d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM nginx:alpine + +# Bring in HexGL +COPY html /usr/share/nginx/html +COPY start_nginx.sh / + +# Run nginx +CMD /start_nginx.sh diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/html b/html new file mode 160000 index 0000000..a36a4ad --- /dev/null +++ b/html @@ -0,0 +1 @@ +Subproject commit a36a4ad882b1965db47b32ee075b8015296e863b diff --git a/start_nginx.sh b/start_nginx.sh new file mode 100755 index 0000000..f2947c8 --- /dev/null +++ b/start_nginx.sh @@ -0,0 +1,2 @@ +#!/bin/sh +/usr/sbin/nginx -g "daemon off;"