From c3570fe07098285b4b3a7682f25ba0374069de3e Mon Sep 17 00:00:00 2001 From: Marco Tallskog Date: Tue, 17 Sep 2019 09:46:53 +0300 Subject: [PATCH] Include curl in dbaas docker image Add the curl tool to docker image to facilitate trouble-shooting. Change-Id: I0e06aecc0c5c16bb2af9540ccfcf05d7adefa7cf Signed-off-by: Marco Tallskog --- container-tag.yaml | 2 +- docker/Dockerfile.redis | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/container-tag.yaml b/container-tag.yaml index 5775dfa..dfa47f5 100644 --- a/container-tag.yaml +++ b/container-tag.yaml @@ -2,4 +2,4 @@ # This file is expected to be in the docker build directory; # can be moved with suitable JJB configuration. --- -tag: '0.2.0' +tag: '0.2.1' diff --git a/docker/Dockerfile.redis b/docker/Dockerfile.redis index 00bf03f..03abab5 100644 --- a/docker/Dockerfile.redis +++ b/docker/Dockerfile.redis @@ -24,5 +24,6 @@ RUN ./autogen.sh && \ FROM redis:5.0.5-alpine3.9 +RUN apk add curl COPY --from=build-env /usr/local/libexec/redismodule/libredismodule.so /usr/local/libexec/redismodule/libredismodule.so WORKDIR /data -- 2.16.6