From af9efb107dac390984c0bdfadc211ab3634d3a99 Mon Sep 17 00:00:00 2001 From: Filipe Freire Date: Wed, 10 Jul 2024 17:07:44 +0100 Subject: [PATCH] fix: path and docker build [no-ticket] (#224) --- Dockerfile | 4 ++-- docs/inso-cli/cli-command-reference/inso-lint-spec.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a8d8f4c..0acaa8c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:1 -FROM ruby:2.7-slim +FROM ruby:3.3.4-slim RUN apt-get -y update && apt-get install -y build-essential ruby-dev @@ -7,7 +7,7 @@ COPY docs /docs WORKDIR /docs -RUN bundle install +RUN bundle update && bundle install EXPOSE 4000 80 CMD bundle exec jekyll serve -H 0.0.0.0 -P 4000 \ No newline at end of file diff --git a/docs/inso-cli/cli-command-reference/inso-lint-spec.md b/docs/inso-cli/cli-command-reference/inso-lint-spec.md index 341369c..1c0b232 100644 --- a/docs/inso-cli/cli-command-reference/inso-lint-spec.md +++ b/docs/inso-cli/cli-command-reference/inso-lint-spec.md @@ -21,7 +21,7 @@ Lint the given specification, the user will be prompted to select a specificatio At the moment Inso CLI uses Spectral's default `oas` Ruleset Definition. For more information refer to the [OpenAPI ruleset reference documentation](https://meta.stoplight.io/docs/spectral/docs/reference/openapi-rules.md). -> For custom linting, refer to the [Custom Linting](inso-custom-linting) document. +> For custom linting, refer to the [Custom Linting](/inso-cli/cli-command-reference/inso-custom-linting) document. ## Global Flags