diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-03-03 23:39:40 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-03-03 23:39:40 +0800 |
commit | c9e55091417207ffa0fb550a40c308c77860da27 (patch) | |
tree | a892e27d406de0c12c6f0f4ff8e11bb73cecf572 | |
parent | 28cfc786d61b3c367398bd42542849042e5a75ce (diff) | |
download | crupest-c9e55091417207ffa0fb550a40c308c77860da27.tar.gz crupest-c9e55091417207ffa0fb550a40c308c77860da27.tar.bz2 crupest-c9e55091417207ffa0fb550a40c308c77860da27.zip |
fix(nginx): docker cache problem.
-rw-r--r-- | services/docker/nginx/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/docker/nginx/Dockerfile b/services/docker/nginx/Dockerfile index 9f5b7fe..3169e00 100644 --- a/services/docker/nginx/Dockerfile +++ b/services/docker/nginx/Dockerfile @@ -3,8 +3,8 @@ COPY --from=www . /project/ RUN ls && hugo FROM nginx:mainline -COPY --from=build-www /project/public /srv/www RUN apt update && apt-get install -y tini certbot && rm -rf /var/lib/apt/lists/* ADD mail-robots.txt /srv/mail/robots.txt ADD certbot.bash nginx-wrapper.bash /app/ +COPY --from=build-www /project/public /srv/www CMD ["/usr/bin/tini", "--", "/app/nginx-wrapper.bash"] |