From 8cddce0cadce636bbde8e481ae160d22534a71d2 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Tue, 13 Sep 2022 21:44:49 +0200 Subject: Docker: T2913: fix fpm package installation during container assembly Error installing fpm: The last version of public_suffix (< 6.0, >= 2.0.2) to support your Ruby & RubyGems was 4.0.7. Try installing it with `gem install public_suffix -v 4.0.7` and then running the current command again public_suffix requires Ruby version >= 2.6. The current ruby version is 2.5.0. --- docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) (limited to 'docker') diff --git a/docker/Dockerfile b/docker/Dockerfile index 51a7780f..a6126904 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -604,6 +604,7 @@ RUN apt-get update && apt-get install -y \ ruby-dev \ rubygems \ build-essential +RUN gem install public_suffix -v 4.0.7 RUN gem install --no-document fpm # Allow password-less 'sudo' for all users in group 'sudo' -- cgit v1.2.3