From 951b52ef2565647bc66806a8e84d1fbe34ad5e69 Mon Sep 17 00:00:00 2001 From: kououken Date: Thu, 20 Dec 2018 01:42:02 -0600 Subject: [PATCH] Testing initial docker environment to deploy frontend. --- frontend/Dockerfile | 8 ++++++++ frontend/html/index.html | 12 ++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 frontend/Dockerfile create mode 100644 frontend/html/index.html diff --git a/frontend/Dockerfile b/frontend/Dockerfile new file mode 100644 index 0000000..44556fe --- /dev/null +++ b/frontend/Dockerfile @@ -0,0 +1,8 @@ +# Use nginx mainline as parent image +FROM nginx:mainline + +# Make port 80 available to the world outside this container +EXPOSE 80 + +# Copy over html documents +COPY html /usr/share/nginx/html diff --git a/frontend/html/index.html b/frontend/html/index.html new file mode 100644 index 0000000..81aca20 --- /dev/null +++ b/frontend/html/index.html @@ -0,0 +1,12 @@ + + + + + + Reimbursinator + + +

Reimbursinator v.1

+

This content served by nginx.

+ +