Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dockerfile to include cspell as the spell checker for istio.io #3161

Merged
merged 4 commits into from
Mar 25, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docker/build-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -427,14 +427,15 @@ ENV BABEL_PRESET_ENV=v7.18.2
ENV BABEL_PRESET_MINIFY_VERSION=v0.5.2
ENV LINKINATOR_VERSION=v2.0.5
ENV MARKDOWN_SPELLCHECK_VERSION=v1.3.1
ENV CSPELL_VERSION=v8.17.5
ENV NODEJS_VERSION=22.14.0
ENV SASS_LINT_VERSION=v1.13.1
ENV SASS_VERSION=v1.52.1
ENV SVGO_VERSION=v1.3.2
ENV SVGSTORE_CLI_VERSION=v1.3.2
ENV TSLINT_VERSION=v6.1.3
ENV TYPESCRIPT_VERSION=v4.7.2
ENV MARKDOWNLINT_CLI2_VERSION=0.17.2
ENV MARKDOWNLINT_CLI2_VERSION=v0.17.2

RUN apt-get update && apt-get install -y --no-install-recommends \
wget ca-certificates
Expand All @@ -458,6 +459,7 @@ RUN npm install --omit=dev --global \
typescript@"${TYPESCRIPT_VERSION}" \
tslint@"${TSLINT_VERSION}" \
markdown-spellcheck@"${MARKDOWN_SPELLCHECK_VERSION}" \
cspell@"${CSPELL_VERSION}" \
svgstore-cli@"${SVGSTORE_CLI_VERSION}" \
svgo@"${SVGO_VERSION}" \
@babel/core@"${BABEL_CORE_VERSION}" \
Expand Down