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
The following commit(s) were added to refs/heads/master by this push:
new b6605f2 Pin ffi version to 1.12.2
b6605f2 is described below
commit b6605f26bf89292fc38f6c0dadaf346f789bf1de
Author: Andrew Gaul <[email protected]>
AuthorDate: Sat Mar 6 22:09:26 2021 +0900
Pin ffi version to 1.12.2
More recent versions require Ruby 2.3.
---
Dockerfile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Dockerfile b/Dockerfile
index 99a88f6..7bc1f5b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,7 +3,8 @@ FROM ruby:2.2.5
RUN apt-get update && \
apt-get install -y rsync
-RUN gem install jekyll -v 1.5.1 && \
+RUN gem install ffi -v 1.12.2 && \
+ gem install jekyll -v 1.5.1 && \
gem install rdiscount
ENV LC_ALL=C.UTF-8 LANG=C.UTF-8