diff options
author | Tomasz Golabek <tomasz.golabek@nokia.com> | 2019-06-14 15:41:22 +0200 |
---|---|---|
committer | Tomasz Golabek <tomasz.golabek@nokia.com> | 2019-06-19 11:19:02 +0200 |
commit | 8a3e3fc5dcc615044980586501c3a84031fc9513 (patch) | |
tree | d31eda0cc7397df28b2349ea075e4f89652fee8f /base_sdc-cqlsh | |
parent | 48a4933520594d8aca245f0963f4339b74764cf8 (diff) |
Fixed Dockerfiles for base images
Dockerfiles for building base images of sdc components fixed.
Change-Id: I50057d3edba1c06e6175e5cc547981efb11ecac3
Issue-ID: SDC-2367
Signed-off-by: Tomasz Golabek <tomasz.golabek@nokia.com>
Diffstat (limited to 'base_sdc-cqlsh')
-rw-r--r-- | base_sdc-cqlsh/Dockerfile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/base_sdc-cqlsh/Dockerfile b/base_sdc-cqlsh/Dockerfile index 5451a66..9595764 100644 --- a/base_sdc-cqlsh/Dockerfile +++ b/base_sdc-cqlsh/Dockerfile @@ -1,19 +1,18 @@ FROM openjdk:8-jdk-alpine RUN apk add --no-cache py-pip && \ + echo "http://nl.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories && \ pip install cqlsh==4.0.1 && \ set -ex && \ pip install cqlsh && \ - apk add --no-cache \ bash \ build-base \ - ruby=2.5.2-r0 \ + ruby=2.5.5-r0 \ ruby-dev \ libffi-dev \ libxml2-dev && \ gem install chef:13.8.5 berkshelf:6.3.1 io-console:0.4.6 etc webrick --no-document && \ - echo "http://nl.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories && \ apk update && \ apk add binutils \ libtasn1 |