You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ja...@apache.org on 2018/05/10 11:29:03 UTC

cassandra git commit: Clean up build artifacts in docs container

Repository: cassandra
Updated Branches:
  refs/heads/trunk 426876169 -> f2ee3db65


Clean up build artifacts in docs container

patch by James Lamb; reviewed by Dinesh Joshi for CASSANDRA-14432


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/f2ee3db6
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/f2ee3db6
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/f2ee3db6

Branch: refs/heads/trunk
Commit: f2ee3db6537005f9ae8582cecd8e29df29ac30d5
Parents: 4268761
Author: James Lamb <ja...@uptake.com>
Authored: Tue May 1 18:16:21 2018 -0500
Committer: Jason Brown <ja...@gmail.com>
Committed: Thu May 10 04:27:58 2018 -0700

----------------------------------------------------------------------
 CHANGES.txt    | 5 +++--
 doc/Dockerfile | 7 +++++--
 2 files changed, 8 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/f2ee3db6/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 77b9a92..e574d16 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,8 +1,9 @@
 4.0
- * minor network authz improvements (Cassandra-14413)
+ * Clean up build artifacts in docs container (CASSANDRA-14432)
+ * Minor network authz improvements (Cassandra-14413)
  * Automatic sstable upgrades (CASSANDRA-14197)
  * Replace deprecated junit.framework.Assert usages with org.junit.Assert (CASSANDRA-14431)
- * cassandra-stress throws NPE if insert section isn't specified in user profile (CASSSANDRA-14426)
+ * Cassandra-stress throws NPE if insert section isn't specified in user profile (CASSSANDRA-14426)
  * List clients by protocol versions `nodetool clientstats --by-protocol` (CASSANDRA-14335)
  * Improve LatencyMetrics performance by reducing write path processing (CASSANDRA-14281)
  * Add network authz (CASSANDRA-13985)

http://git-wip-us.apache.org/repos/asf/cassandra/blob/f2ee3db6/doc/Dockerfile
----------------------------------------------------------------------
diff --git a/doc/Dockerfile b/doc/Dockerfile
index 074a9ed..dc4b50f 100644
--- a/doc/Dockerfile
+++ b/doc/Dockerfile
@@ -6,12 +6,15 @@ FROM python:2.7
 
 WORKDIR /usr/src/code
 
-RUN pip install sphinx sphinx_rtd_theme
+RUN pip install --no-cache-dir \
+        sphinx \
+        sphinx_rtd_theme
 
 RUN apt-get update \
     && apt-get install -y \
         ant \
-        default-jdk
+        default-jdk \
+    && apt-get clean
 
 CMD ant gen-doc \
     && echo "The locally built documentation can be found here:\n\n    build/html/index.html\n\n"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org