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-jetty | |
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-jetty')
-rw-r--r-- | base_sdc-jetty/Dockerfile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/base_sdc-jetty/Dockerfile b/base_sdc-jetty/Dockerfile index 2bab202..df05d8f 100644 --- a/base_sdc-jetty/Dockerfile +++ b/base_sdc-jetty/Dockerfile @@ -2,19 +2,19 @@ FROM jetty:9.4-jre8-alpine USER root - # Install Chef RUN set -ex && \ + echo "http://nl.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories && \ apk update && \ apk add --no-cache \ jq \ curl \ curl-dev \ libressl-dev \ - vim=8.1.0115-r0 \ + vim \ bash \ build-base \ - ruby=2.5.2-r0 \ + ruby=2.5.5-r0 \ ruby-dev \ libffi-dev \ libxml2-dev && \ @@ -24,7 +24,6 @@ RUN set -ex && \ 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 jq libtasn1 |