This is an automated email from the ASF dual-hosted git repository.
mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new 20c97a8 [build][docker] Add zip and unzip to pulsar-build docker
image (#2239)
20c97a8 is described below
commit 20c97a85d055f3db132e22aa68196b2e005d099f
Author: Sijie Guo <[email protected]>
AuthorDate: Thu Jul 26 09:57:02 2018 -0700
[build][docker] Add zip and unzip to pulsar-build docker image (#2239)
### Motivation
zip and unzip are required for building pulsar project since #2192.
### Changes
add `zip` and `unzip` into `pulsar-build` docker image, so the docker
image can be used for building website
---
build/docker/Dockerfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build/docker/Dockerfile b/build/docker/Dockerfile
index 2e624ea..d28330f 100644
--- a/build/docker/Dockerfile
+++ b/build/docker/Dockerfile
@@ -28,7 +28,7 @@ RUN apt-get update && \
liblog4cxx-dev libprotobuf-dev libboost-all-dev google-mock
libgtest-dev \
libjsoncpp-dev libxml2-utils protobuf-compiler wget \
curl doxygen openjdk-8-jdk-headless clang-format-5.0 \
- gnupg2 golang-1.10-go
+ gnupg2 golang-1.10-go zip unzip
# Compile and install gtest
RUN cd /usr/src/gtest && cmake . && make && cp libgtest.a /usr/lib