diff options
author | vasraz <vasyl.razinkov@est.tech> | 2022-06-09 19:36:13 +0100 |
---|---|---|
committer | Vasyl Razinkov <vasyl.razinkov@est.tech> | 2022-06-10 09:50:54 +0000 |
commit | 101e0a83d8a6b4690dafe72543b245e25af9255a (patch) | |
tree | 4af1bfde8fa54e3448dbc10f587fc78caa5ec18d /catalog-be/sdc-backend-init/Dockerfile | |
parent | e496d8192c0313eac6b6fd326b2d2a2070745cb3 (diff) |
Fix broken images build due to multipart-post gem
Maximum supported version of multipart-post, with the current images Ruby & RubyGems is 2.2.0.
Forcing the 2.2.0 version.
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Change-Id: Ie7a7232be817f005c36f09b023344b479c64457f
Issue-ID: SDC-4041
Diffstat (limited to 'catalog-be/sdc-backend-init/Dockerfile')
-rw-r--r-- | catalog-be/sdc-backend-init/Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/catalog-be/sdc-backend-init/Dockerfile b/catalog-be/sdc-backend-init/Dockerfile index 8f6da77d19..1b9de33072 100644 --- a/catalog-be/sdc-backend-init/Dockerfile +++ b/catalog-be/sdc-backend-init/Dockerfile @@ -22,6 +22,7 @@ RUN apk update && \ python -m pip install --upgrade pip \ pip install 'pycurl==7.44.1' && \ set -ex && \ + gem install multipart-post -v 2.2.0 --no-document && \ gem install chef:13.8.5 berkshelf:6.3.1 io-console:0.4.6 etc webrick --no-document && \ apk del .build-dependencies && \ gem cleanup |