You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mnemonic.apache.org by xj...@apache.org on 2022/01/11 21:51:46 UTC

[mnemonic] branch master updated: MNEMONIC-713: Update Ubuntu Docker image to include hiredis dependencies

This is an automated email from the ASF dual-hosted git repository.

xjiao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mnemonic.git


The following commit(s) were added to refs/heads/master by this push:
     new 4498610  MNEMONIC-713: Update Ubuntu Docker image to include hiredis dependencies
4498610 is described below

commit 449861085a149e21dfb644940ab67505617b3066
Author: Yanhui Zhao <yz...@apache.org>
AuthorDate: Sun Jan 9 18:04:59 2022 -0800

    MNEMONIC-713: Update Ubuntu Docker image to include hiredis dependencies
---
 docker/docker-Ubuntu/Dockerfile | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/docker/docker-Ubuntu/Dockerfile b/docker/docker-Ubuntu/Dockerfile
index 794c486..24e519b 100644
--- a/docker/docker-Ubuntu/Dockerfile
+++ b/docker/docker-Ubuntu/Dockerfile
@@ -30,6 +30,11 @@ ENV PATH $JAVA_HOME/bin:$PATH
 
 WORKDIR /ws
 
+RUN git clone https://github.com/redis/hiredis.git && \
+	cd hiredis && make && make install
+
+RUN cd /ws
+
 RUN git clone https://github.com/apache/mnemonic.git && \
     cd mnemonic && mvn clean package install