From 40cfeb68890ef0ddb9ae6a035c047e8110a4ef94 Mon Sep 17 00:00:00 2001 From: copilotcoder Date: Fri, 19 Jun 2026 14:25:47 -0400 Subject: [PATCH] ci: copy markdownlint config into cicd image --- Dockerfile.cicd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.cicd b/Dockerfile.cicd index fd8de0e..babe34b 100644 --- a/Dockerfile.cicd +++ b/Dockerfile.cicd @@ -59,6 +59,7 @@ RUN --mount=type=secret,id=ssh_private_key \ cp /tmp/repo/frontend/yarn.lock /workspace/frontend/ 2>/dev/null || echo "No frontend yarn.lock" && \ cp /tmp/repo/frontend/.yarnrc.yml /workspace/frontend/ 2>/dev/null || echo "No frontend .yarnrc.yml" && \ cp /tmp/repo/.pre-commit-config.yaml /workspace/ 2>/dev/null || echo "No pre-commit config" && \ + cp /tmp/repo/.markdownlint.yaml /workspace/ 2>/dev/null || echo "No markdownlint config" && \ echo "✓ Dependency files extracted for optimized layer caching" && \ rm -rf ~/.ssh @@ -160,7 +161,7 @@ RUN echo "Copying source code while preserving installed dependencies..." && \ fi; \ done && \ # Copy common hidden root files without touching . or .. - for dotfile in .dockerignore .gitignore .pre-commit-config.yaml .editorconfig; do \ + for dotfile in .dockerignore .gitignore .pre-commit-config.yaml .markdownlint.yaml .editorconfig; do \ if [ -f "/tmp/repo/${dotfile}" ]; then \ cp -f "/tmp/repo/${dotfile}" /workspace/; \ fi; \