feat(docker): Include .git directory in Docker image for version control
Some checks failed
Build latest image / build-container (push) Failing after 13s

This commit is contained in:
Nicolai Ort 2025-03-22 22:59:47 +01:00
parent 8fbd031e46
commit 0032df1862
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F

View File

@ -2,6 +2,7 @@ FROM hugomods/hugo:exts AS build
WORKDIR /app
COPY . /app/
COPY .git /app/.git
RUN hugo
FROM hugomods/hugo:nginx