diff options
author | crupest <crupest@outlook.com> | 2022-11-30 19:00:08 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-11-30 19:00:08 +0800 |
commit | 43e98101f1d9cf5845d1b6f189efffe3eb02f861 (patch) | |
tree | 4c2cad5c58d14dc22bd7af0a7ab6aaa1315e8ce5 /docker/crupest-blog/Dockerfile | |
parent | 702e921591973bd0f06acddfaf35c304846bfe8b (diff) | |
download | crupest-43e98101f1d9cf5845d1b6f189efffe3eb02f861.tar.gz crupest-43e98101f1d9cf5845d1b6f189efffe3eb02f861.tar.bz2 crupest-43e98101f1d9cf5845d1b6f189efffe3eb02f861.zip |
A new way for blog.
Diffstat (limited to 'docker/crupest-blog/Dockerfile')
-rw-r--r-- | docker/crupest-blog/Dockerfile | 9 |
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" ] |