You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wi...@apache.org on 2019/10/10 12:30:09 UTC

[couchdb-fauxton] 03/03: Disable Fauxton when building couchdb:dev

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

willholley pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-fauxton.git

commit 17e3bcb6d9c614f4d39cfba39da49806b1829ca6
Author: Will Holley <wi...@gmail.com>
AuthorDate: Thu Oct 10 12:47:26 2019 +0100

    Disable Fauxton when building couchdb:dev
---
 bin/build-couchdb-dev.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/build-couchdb-dev.sh b/bin/build-couchdb-dev.sh
index 7bd5fda..6374ea0 100755
--- a/bin/build-couchdb-dev.sh
+++ b/bin/build-couchdb-dev.sh
@@ -14,7 +14,7 @@
 if [[ $COUCHDB_IMAGE == "couchdb:dev" ]]; then
     git clone https://github.com/apache/couchdb-docker.git
     cd couchdb-docker
-    docker build dev -t couchdb:dev
+    docker build dev --build-arg configure_options='--disable-fauxton --disable-docs' -t couchdb:dev
     cd ..
     rm -rf couchdb-docker
 fi