From 043707d0cbdd0e997eaaf91ff69105f761f7a57c Mon Sep 17 00:00:00 2001 From: Nawaz Dhandala Date: Wed, 1 Apr 2026 19:52:32 +0100 Subject: [PATCH] fix: update blog repo clone command to use --depth 1 for faster cloning --- Home/Dockerfile.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Home/Dockerfile.tpl b/Home/Dockerfile.tpl index a6728896cd..323f4d4bb6 100644 --- a/Home/Dockerfile.tpl +++ b/Home/Dockerfile.tpl @@ -60,7 +60,7 @@ EXPOSE 1444 RUN mkdir -p /usr/src # Clone blog repo. -RUN cd /usr/src && git clone https://github.com/oneuptime/blog +RUN cd /usr/src && git clone --depth 1 https://github.com/oneuptime/blog # Now we have the blog repo cloned to /usr/src/blog.