From cb28211e7da44f0333893229b5c642d534afed43 Mon Sep 17 00:00:00 2001 From: mtkennerly Date: Fri, 9 Feb 2024 16:39:27 -0500 Subject: [PATCH] Add note about Docker builds --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c4d87a6..ddaf6bf 100644 --- a/README.md +++ b/README.md @@ -245,6 +245,7 @@ but there are some design decisions that prompted the creation of Dunamai as an * For GitHub workflows, invoke `actions/checkout@v3` with `fetch-depth: 0`. * For GitLab pipelines, set the `GIT_DEPTH` variable to 0. + * For Docker builds, copy the VCS history (e.g., `.git` folder) into the container. For Git, you can also avoid doing a full clone by specifying a remote branch for tags (e.g., `--tag-branch remotes/origin/master`).