This is an automated email from the ASF dual-hosted git repository. gaul pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jclouds-site.git
commit 5fa874000d841866e00c20362d3223f79ec0ffbb Author: Andrew Gaul <[email protected]> AuthorDate: Sun Feb 9 10:30:14 2025 -0800 Pin Ruby gems to older versions --- Dockerfile | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 54f2c1b..e8d0cac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,9 +6,28 @@ RUN echo 'deb [trusted=yes] http://archive.debian.org/debian-security jessie/upd RUN apt-get update && \ apt-get install -y --force-yes rsync -RUN gem install ffi -v 1.12.2 && \ - gem install jekyll -v 1.5.1 && \ - gem install rdiscount +# ffi and rb-inotify are explicitly ordered +RUN gem install \ + ffi:1.12.2 \ + rb-inotify:0.10.1 \ + blankslate:2.1.2.4 \ + classifier:1.3 \ + colorator:0.1 \ + commander:4.1.6 \ + highline:1.6.21 \ + liquid:3.0.6 \ + listen:1.3.1 \ + maruku:0.7.0 \ + mutex_m:0.1.0 \ + parslet:1.5.0 \ + posix-spawn:0.3.15 \ + pygments.rb:0.5.4 \ + rdiscount:2.2.7.3 \ + redcarpet:2.3.0 \ + safe_yaml:1.0.5 \ + toml:0.1.2 \ + yajl-ruby:1.1.0 +RUN gem install jekyll:1.5.1 --ignore-dependencies ENV LC_ALL=C.UTF-8 LANG=C.UTF-8
