fix: update blog repo clone command to use --depth 1 for faster cloning

This commit is contained in:
Nawaz Dhandala
2026-04-01 19:52:32 +01:00
parent 991916b2de
commit 043707d0cb

View File

@@ -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.