From 82e481a418f278a566bf6cc3ab7345c99e363902 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80=20?= =?UTF-8?q?=D0=97=D0=B8=D0=BC=D0=B8=D0=BD?= Date: Tue, 12 May 2026 17:37:08 +0000 Subject: [PATCH] fix(docs): copy operator/reviewer/changelog dirs to docker image --- docs/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/Dockerfile b/docs/Dockerfile index 5997fe6..358a9f1 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -15,9 +15,11 @@ COPY package.json pnpm-lock.yaml ./ RUN npm install -g --silent pnpm@9.15.4 \ && pnpm install --frozen-lockfile -# Copy остальное (toc, .yfm, markdown). -COPY .yfm toc.yaml index.md ./ +# Copy остальное (toc, .yfm, markdown + content directories). +COPY .yfm toc.yaml index.md changelog.md ./ COPY integration ./integration +COPY operator ./operator +COPY reviewer ./reviewer RUN pnpm build