You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the container is built, you will see the following error:
ERROR: Error installing jekyll:
There are no versions of jekyll-sass-converter (~> 2.0) compatible with your Ruby & RubyGems. Maybe try installing an older version of the gem you're looking for?
jekyll-sass-converter requires Ruby version >= 2.4.0. The current ruby version is 2.3.7.456.
Expected Results
Container should start up, and documentation should be served on localhost:4000.
Actual Results (including error logs, if applicable)
This change addresses a version mismatch between Ruby and
jekyll-sass-converter in the docs container. With the current
implementation, when the docs container is started with:
```
cd docs
docker-compose up -d
```
then an error is reported when the container is being built:
```
ERROR: Error installing jekyll:
There are no versions of jekyll-sass-converter (~> 2.0) compatible with your Ruby & RubyGems. Maybe try installing an older version of the gem you're looking for?
jekyll-sass-converter requires Ruby version >= 2.4.0. The current ruby version is 2.3.7.456.
```
The fix is to upgrade the container to Ruby 2.4.0.
Fixes Issue #1028
This change addresses a version mismatch between Ruby and
jekyll-sass-converter in the docs container. With the current
implementation, when the docs container is started with:
```
cd docs
docker-compose up -d
```
then an error is reported when the container is being built:
```
ERROR: Error installing jekyll:
There are no versions of jekyll-sass-converter (~> 2.0) compatible with your Ruby & RubyGems. Maybe try installing an older version of the gem you're looking for?
jekyll-sass-converter requires Ruby version >= 2.4.0. The current ruby version is 2.3.7.456.
```
The fix is to upgrade the container to Ruby 2.4.0.
Fixes Issue #1028
Summary
Currently, if the secretless-broker docs container is failing with a version mismatch between Ruby and jekyll-sass-converter.
Reference: https://github.com/cyberark/secretless-broker/blob/master/CONTRIBUTING.md#run-in-docker
Steps to Reproduce
To reproduce the failure, run:
When the container is built, you will see the following error:
Expected Results
Container should start up, and documentation should be served on localhost:4000.
Actual Results (including error logs, if applicable)
See error message above.
Additional Information
Problem can be fixed with the following change:
The text was updated successfully, but these errors were encountered: