Skip to content

Commit

Permalink
Merge branch 'release-0.14' into dependabot/github_actions/release-0.…
Browse files Browse the repository at this point in the history
…14/github-actions-c173e24c6b
  • Loading branch information
tpantelis authored Dec 18, 2023
2 parents ce7dd06 + e779ab6 commit 171f9bb
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions package/Dockerfile.shipyard-linting
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,13 @@ ENV HOST_ARCH=${DAPPER_HOST_ARCH} ARCH=${DAPPER_HOST_ARCH} \
# yamllint | YAML linting
# yq | YAML processing

ENV MARKDOWNLINT_VERSION=0.33.0 \
GITLINT_VERSION=0.19.1

RUN apk add --no-cache bash findutils git grep make nodejs py3-six shellcheck upx yamllint yq && \
apk add --no-cache --virtual installers npm py3-pip && \
npm install -g markdownlint-cli && \
pip install gitlint && \
npm install -g markdownlint-cli@${MARKDOWNLINT_VERSION} && \
pip install --break-system-packages gitlint==${GITLINT_VERSION} && \
find /usr/bin/ -type f -executable -newercc /proc -size +1M \( -execdir upx {} \; -o -true \) && \
find /usr/lib/ -name __pycache__ -type d -exec rm -rf {} + && \
apk del installers
Expand Down

0 comments on commit 171f9bb

Please sign in to comment.