summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2024-02-05 21:42:35 -0500
committerRobby Zambito <contact@robbyzambito.me>2024-02-24 13:37:55 -0500
commit26d20fb4f1d8635ae872237a7829d16c93b4185a (patch)
treef075231f515e4284154b8ff974fa8e553280d11d
parent4ece1231733a58a09f80a195b6690b095391b72f (diff)
Add Dockerfile
-rw-r--r--Dockerfile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..9dbeec0
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,9 @@
+FROM alpine:3
+
+RUN apk update && apk add hugo
+
+WORKDIR /site
+
+COPY . .
+
+ENTRYPOINT ["hugo"]