diff options
author | crupest <crupest@outlook.com> | 2022-12-02 13:54:46 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-12-02 13:54:46 +0800 |
commit | e48986d206bef7a5177645ac19e1a996f9874a3c (patch) | |
tree | 2d9c5d897ccac14c7a6a992cadaba746f8f4406c /docker/crupest-blog/Dockerfile | |
parent | a03f8cfac83ed84a9e284f4b47762e2785ab63c8 (diff) | |
download | crupest-e48986d206bef7a5177645ac19e1a996f9874a3c.tar.gz crupest-e48986d206bef7a5177645ac19e1a996f9874a3c.tar.bz2 crupest-e48986d206bef7a5177645ac19e1a996f9874a3c.zip |
Try to fix hugo.
Diffstat (limited to 'docker/crupest-blog/Dockerfile')
-rw-r--r-- | docker/crupest-blog/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/crupest-blog/Dockerfile b/docker/crupest-blog/Dockerfile index 4790721..a7d00cb 100644 --- a/docker/crupest-blog/Dockerfile +++ b/docker/crupest-blog/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:latest ARG CRUPEST_BLOG_UPDATE_INTERVAL=1d ENV CRUPEST_BLOG_UPDATE_INTERVAL=${CRUPEST_BLOG_UPDATE_INTERVAL} COPY install-hugo.bash daemon.bash update.bash /scripts/ -RUN apk add --no-cache coreutils gzip tar tini curl bash git && /scripts/install-hugo.bash && hugo version +RUN apk add --no-cache coreutils gzip tar tini curl bash git && /scripts/install-hugo.bash VOLUME [ "/public" ] ENTRYPOINT ["/sbin/tini", "--"] CMD [ "/daemon.bash" ] |