From 43140e12fbe2461d9585534706f878fd188327dc Mon Sep 17 00:00:00 2001 From: Adolfo Delorenzo Date: Sun, 10 Oct 2021 14:58:44 -0600 Subject: [PATCH] first commit --- Dockerfile | 8 ++++++++ README.md | 0 html | 1 + start_nginx.sh | 2 ++ 4 files changed, 11 insertions(+) create mode 100644 Dockerfile create mode 100644 README.md create mode 160000 html create mode 100755 start_nginx.sh 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;"