You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2019/07/26 11:13:59 UTC

[incubator-iotdb] branch rel/0.8 updated: Update dockerfile to only compile server and client

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

qiaojialin pushed a commit to branch rel/0.8
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git


The following commit(s) were added to refs/heads/rel/0.8 by this push:
     new 1e3b795  Update dockerfile to only compile server and client
     new c765b11  Merge pull request #308 from samperson1997/docker_file
1e3b795 is described below

commit 1e3b79516da1908000cd96d9be3aefea9f83128f
Author: 151250128 <15...@smail.nju.edu.cn>
AuthorDate: Fri Jul 26 17:59:12 2019 +0800

    Update dockerfile to only compile server and client
---
 docker/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/Dockerfile b/docker/Dockerfile
index 5aecd40..b3cf982 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -29,7 +29,7 @@ RUN apt update \
   && unzip 0.8.zip \
   && rm 0.8.zip \
   && cd incubator-iotdb-rel-0.8 \
-  && mvn package -DskipTests -Dthrift.download-url="http://www.apache.org/licenses/LICENSE-2.0.txt" -Dthrift.exec.absolute.path="/usr/bin/thrift" \
+  && mvn package -pl server,client -am -DskipTests -Dthrift.download-url="http://www.apache.org/licenses/LICENSE-2.0.txt" -Dthrift.exec.absolute.path="/usr/bin/thrift" \
   && cd build/target/ \
   && tar -xzf build-0.8.0-SNAPSHOT-release.tar.gz \
   && mkdir /iotdb \