You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by fr...@apache.org on 2019/03/06 23:42:34 UTC

[calcite-avatica] branch master updated: Switch from maven:alpine to maven docker image for generating javadocs when publishing the site

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

francischuang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite-avatica.git


The following commit(s) were added to refs/heads/master by this push:
     new 89a0e7c  Switch from maven:alpine to maven docker image for generating javadocs when publishing the site
89a0e7c is described below

commit 89a0e7c8d58c940819e1f0cb53ed7c5491280d7a
Author: Francis Chuang <fr...@apache.org>
AuthorDate: Thu Mar 7 10:41:23 2019 +1100

    Switch from maven:alpine to maven docker image for generating javadocs when publishing the site
---
 site/docker-compose.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/site/docker-compose.yml b/site/docker-compose.yml
index 47b3a2d..c14dd44 100644
--- a/site/docker-compose.yml
+++ b/site/docker-compose.yml
@@ -28,7 +28,7 @@ services:
     volumes:
       - .:/srv/jekyll
   generate-javadoc:
-    image: maven:alpine
+    image: maven
     working_dir: /usr/src/calcite-avatica
     command: sh -c "mvn -DskipTests -P!compile-protobuf site; rm -rf site/target/avatica/apidocs site/target/avatica/testapidocs; mkdir -p site/target/avatica; mv target/site/apidocs target/site/testapidocs site/target/avatica"
     volumes: