Merge branch 'fix/docs-dockerfile-copy-new-dirs' into 'main'

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

See merge request 2-6/2-6-4/terravault/ordinis!149
This commit is contained in:
Александр Зимин
2026-05-12 17:37:08 +00:00
+4 -2
View File
@@ -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