fix(docs): copy operator/reviewer/changelog dirs to docker image

This commit is contained in:
Александр Зимин
2026-05-12 17:37:08 +00:00
parent 1a3d41fcf6
commit 82e481a418
+4 -2
View File
@@ -15,9 +15,11 @@ COPY package.json pnpm-lock.yaml ./
RUN npm install -g --silent pnpm@9.15.4 \ RUN npm install -g --silent pnpm@9.15.4 \
&& pnpm install --frozen-lockfile && pnpm install --frozen-lockfile
# Copy остальное (toc, .yfm, markdown). # Copy остальное (toc, .yfm, markdown + content directories).
COPY .yfm toc.yaml index.md ./ COPY .yfm toc.yaml index.md changelog.md ./
COPY integration ./integration COPY integration ./integration
COPY operator ./operator
COPY reviewer ./reviewer
RUN pnpm build RUN pnpm build