From 239e6ac96ecd32a5655c1a0468fbe6b9c3ef01b7 Mon Sep 17 00:00:00 2001 From: Gregory Hendrickson Date: Thu, 8 Jun 2023 11:09:53 -0700 Subject: [PATCH] Initial --- Dockerfile | 3 +++ static-html-directory/index.html | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 Dockerfile create mode 100644 static-html-directory/index.html diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a1763ad --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM nginx:alpine + +COPY static-html-directory /usr/share/nginx/html diff --git a/static-html-directory/index.html b/static-html-directory/index.html new file mode 100644 index 0000000..2cbf8f0 --- /dev/null +++ b/static-html-directory/index.html @@ -0,0 +1,8 @@ + + + Greg Test + +
+ Hello World! from docker build! +
+ \ No newline at end of file