aboutsummaryrefslogtreecommitdiff
path: root/docker/crupest-blog/Dockerfile
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-11-30 19:00:08 +0800
committercrupest <crupest@outlook.com>2022-11-30 19:00:08 +0800
commitc11b92992e6eebd91d6bbce26b2f407312d05a60 (patch)
tree4c2cad5c58d14dc22bd7af0a7ab6aaa1315e8ce5 /docker/crupest-blog/Dockerfile
parent3c918a6096e77190db83c998e777074493515326 (diff)
downloadcrupest-c11b92992e6eebd91d6bbce26b2f407312d05a60.tar.gz
crupest-c11b92992e6eebd91d6bbce26b2f407312d05a60.tar.bz2
crupest-c11b92992e6eebd91d6bbce26b2f407312d05a60.zip
A new way for blog.
Diffstat (limited to 'docker/crupest-blog/Dockerfile')
-rw-r--r--docker/crupest-blog/Dockerfile9
1 files changed, 9 insertions, 0 deletions
diff --git a/docker/crupest-blog/Dockerfile b/docker/crupest-blog/Dockerfile
new file mode 100644
index 0000000..e2b27a5
--- /dev/null
+++ b/docker/crupest-blog/Dockerfile
@@ -0,0 +1,9 @@
+FROM klakegg/hugo:ext-alpine
+# install git
+ARG CRUPEST_BLOG_UPDATE_INTERVAL=1d
+RUN apk add --no-cache coreutils tini bash git
+ENV CRUPEST_BLOG_UPDATE_INTERVAL=${CRUPEST_BLOG_UPDATE_INTERVAL}
+COPY daemon.bash update.bash /
+VOLUME [ "/blog/public" ]
+ENTRYPOINT ["/sbin/tini", "--"]
+CMD [ "/daemon.bash" ]