Skip to content
Snippets Groups Projects
Commit 00e9c60c authored by Hongwei Wang's avatar Hongwei Wang
Browse files

Update zookeeper in docker file again

parent 5c9bbfbf
No related branches found
No related tags found
No related merge requests found
...@@ -153,7 +153,7 @@ RUN apt-get update && apt-get install -y \ ...@@ -153,7 +153,7 @@ RUN apt-get update && apt-get install -y \
RUN wget http://mirror.olnevhost.net/pub/apache/zookeeper/zookeeper-3.4.6/zookeeper-3.4.6.tar.gz RUN wget http://mirror.olnevhost.net/pub/apache/zookeeper/zookeeper-3.4.6/zookeeper-3.4.6.tar.gz
RUN tar xvf zookeeper-3.4.6.tar.gz RUN tar xvf zookeeper-3.4.6.tar.gz
RUN cd zookeeper-3.4.6/src/c && ./configure && make install RUN cd zookeeper-3.4.6/src/c && ./configure && make install && ldconfig
RUN mkdir /var/local/jenkins RUN mkdir /var/local/jenkins
......
...@@ -146,6 +146,16 @@ RUN wget http://www.dotdeb.org/dotdeb.gpg -O- | apt-key add - ...@@ -146,6 +146,16 @@ RUN wget http://www.dotdeb.org/dotdeb.gpg -O- | apt-key add -
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
git php5 php5-dev phpunit unzip git php5 php5-dev phpunit unzip
##################
# Zookeeper dependencies
# Install dependencies
RUN wget http://mirror.olnevhost.net/pub/apache/zookeeper/zookeeper-3.4.6/zookeeper-3.4.6.tar.gz
RUN tar xvf zookeeper-3.4.6.tar.gz
RUN cd zookeeper-3.4.6/src/c && ./configure && make install && ldconfig
RUN mkdir /var/local/jenkins RUN mkdir /var/local/jenkins
# Define the default command. # Define the default command.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment