Skip to content

Commit

Permalink
Fix html-proofer installation
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpollet authored Aug 8, 2021
1 parent b789e95 commit 2f436ca
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ tidy:
go mod tidy

k3d:
@command -v k3d >/dev/null 2>&1 || curl -s https://raw.githubusercontent.com/rancher/k3d/v3.0.1/install.sh | TAG=v3.0.1 bash
@command -v k3d >/dev/null 2>&1 || curl -s https://raw.githubusercontent.com/rancher/k3d/v3.4.0/install.sh | TAG=v3.4.0 bash

docs-package:
mkdir -p $(CURDIR)/pages
Expand Down
11 changes: 7 additions & 4 deletions docs/check.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ RUN apk --no-cache --no-progress add \
ruby-etc \
ruby-ffi \
ruby-json \
ruby-nokogiri
RUN NOKOGIRI_USE_SYSTEM_LIBRARIES=true gem install --no-document html-proofer -v 3.12.0
ruby-nokogiri \
ruby-dev \
build-base

RUN gem install --no-document html-proofer -v 3.19.0 -- --use-system-libraries

# After Ruby, some NodeJS YAY!
RUN apk --no-cache --no-progress add \
Expand All @@ -23,8 +26,8 @@ RUN apk --no-cache --no-progress add \
RUN npm config set unsafe-perm true

RUN npm install --global \
markdownlint@0.16.0 \
markdownlint-cli@0.18.0
markdownlint@0.23.1 \
markdownlint-cli@0.28.1

# Finally the shell tools we need for later
# tini helps to terminate properly all the parallelized tasks when sending CTRL-C
Expand Down
2 changes: 1 addition & 1 deletion integration/k3d/k3d.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

var (
k3sImage = "rancher/k3s"
k3sVersion = "v1.18.6-k3s1"
k3sVersion = "v1.18.20-k3s1"
)

// DockerImage holds the configuration of a Docker image.
Expand Down

0 comments on commit 2f436ca

Please sign in to comment.