aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile19
1 files changed, 19 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..721b64a
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,19 @@
+FROM nginx:alpine
+
+# /cstate will be our volume & building directory
+WORKDIR /cstate
+
+# Install hugo & git
+RUN apk add hugo git
+
+# -- First Run --
+
+# Download the example site
+RUN git clone https://github.com/cstate/example /cstate
+
+# Copy files from this repo into themes/cstate
+RUN mkdir -p /cstate/themes/cstate
+COPY . /cstate/themes/cstate
+
+# Prepare the entrypoint files
+COPY ./docker/entrypoint.sh /docker-entrypoint.d/10-build-hugo.sh \ No newline at end of file