feat: add spellchecker-cli
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2022-07-16 22:07:42 +02:00
parent fea4663370
commit 5beeec95e6
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
3 changed files with 9 additions and 3 deletions

View File

@ -18,13 +18,15 @@ ENV GOMPLATE_VERSION="${GOMPLATE_VERSION:-v3.11.1}"
ENV URL_PARSER_VERSION="${URL_PARSER_VERSION:-v0.2.13}"
# renovate: datasource=npm depName=prettier
ENV PRETTIER_VERSION="${BUILD_VERSION:-2.7.1}"
# renovate: datasource=npm depName=spellchecker-cli
ENV SPELLCHECKER_VERSION="${BUILD_VERSION:-4.11.0}"
RUN apk --update add curl make tar git && \
curl -SsfL -o /usr/local/bin/gomplate "https://github.com/hairyhenderson/gomplate/releases/download/${GOMPLATE_VERSION}/gomplate_linux-amd64" && \
curl -SsfL -o /usr/local/bin/url-parser "https://github.com/thegeeklab/url-parser/releases/download/${URL_PARSER_VERSION}/url-parser-linux-amd64" && \
chmod 755 /usr/local/bin/gomplate && \
chmod 755 /usr/local/bin/url-parser && \
npm install -q -g prettier@"$PRETTIER_VERSION"; \
npm install -q --location=global "prettier@$PRETTIER_VERSION" "spellchecker-cli@$SPELLCHECKER_VERSION"; \
rm -rf /var/cache/apk/* && \
rm -rf /tmp/*

View File

@ -18,13 +18,15 @@ ENV GOMPLATE_VERSION="${GOMPLATE_VERSION:-v3.11.1}"
ENV URL_PARSER_VERSION="${URL_PARSER_VERSION:-v0.2.13}"
# renovate: datasource=npm depName=prettier
ENV PRETTIER_VERSION="${BUILD_VERSION:-2.7.1}"
# renovate: datasource=npm depName=spellchecker-cli
ENV SPELLCHECKER_VERSION="${BUILD_VERSION:-4.11.0}"
RUN apk --update add curl make tar git && \
curl -SsfL -o /usr/local/bin/gomplate "https://github.com/hairyhenderson/gomplate/releases/download/${GOMPLATE_VERSION}/gomplate_linux-armv7" && \
curl -SsfL -o /usr/local/bin/url-parser "https://github.com/thegeeklab/url-parser/releases/download/${URL_PARSER_VERSION}/url-parser-linux-arm-7" && \
chmod 755 /usr/local/bin/gomplate && \
chmod 755 /usr/local/bin/url-parser && \
npm install -q -g prettier@"$PRETTIER_VERSION"; \
npm install -q --location=global "prettier@$PRETTIER_VERSION" "spellchecker-cli@$SPELLCHECKER_VERSION"; \
rm -rf /var/cache/apk/* && \
rm -rf /tmp/*

View File

@ -18,13 +18,15 @@ ENV GOMPLATE_VERSION="${GOMPLATE_VERSION:-v3.11.1}"
ENV URL_PARSER_VERSION="${URL_PARSER_VERSION:-v0.2.13}"
# renovate: datasource=npm depName=prettier
ENV PRETTIER_VERSION="${BUILD_VERSION:-2.7.1}"
# renovate: datasource=npm depName=spellchecker-cli
ENV SPELLCHECKER_VERSION="${BUILD_VERSION:-4.11.0}"
RUN apk --update add curl make tar git && \
curl -SsfL -o /usr/local/bin/gomplate "https://github.com/hairyhenderson/gomplate/releases/download/${GOMPLATE_VERSION}/gomplate_linux-arm64" && \
curl -SsfL -o /usr/local/bin/url-parser "https://github.com/thegeeklab/url-parser/releases/download/${URL_PARSER_VERSION}/url-parser-linux-arm64" && \
chmod 755 /usr/local/bin/gomplate && \
chmod 755 /usr/local/bin/url-parser && \
npm install -q -g prettier@"$PRETTIER_VERSION"; \
npm install -q --location=global "prettier@$PRETTIER_VERSION" "spellchecker-cli@$SPELLCHECKER_VERSION"; \
rm -rf /var/cache/apk/* && \
rm -rf /tmp/*