diff options
author | crupest <crupest@outlook.com> | 2022-12-02 13:45:27 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-12-02 13:45:27 +0800 |
commit | e9c1ef178ac63b2caf8d4e3d3621d6f63c2199e1 (patch) | |
tree | 159036ee7bcbd077ea364ce3c9b4c8e224c1684b /docker/crupest-blog/Dockerfile | |
parent | 1ad00b7cc6d8fb60ca32514c1ad46e9c6cc68701 (diff) | |
download | crupest-e9c1ef178ac63b2caf8d4e3d3621d6f63c2199e1.tar.gz crupest-e9c1ef178ac63b2caf8d4e3d3621d6f63c2199e1.tar.bz2 crupest-e9c1ef178ac63b2caf8d4e3d3621d6f63c2199e1.zip |
Fix more bugs.
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 aa07216..74fc5a5 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 bash git && /scripts/install-hugo && hugo version +RUN apk add --no-cache coreutils gzip tar tini bash git && /scripts/install-hugo.bash && hugo version VOLUME [ "/public" ] ENTRYPOINT ["/sbin/tini", "--"] CMD [ "/daemon.bash" ] |