You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2021/06/09 21:55:40 UTC

[accumulo-docker] branch main updated: fixes issue w/ copying ZK from local dir (#17)

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

kturner pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo-docker.git


The following commit(s) were added to refs/heads/main by this push:
     new 9d5f404  fixes issue w/ copying ZK from local dir (#17)
9d5f404 is described below

commit 9d5f4049b815daaa5d3df1ea506fd99441e54c17
Author: Keith Turner <kt...@apache.org>
AuthorDate: Wed Jun 9 17:55:29 2021 -0400

    fixes issue w/ copying ZK from local dir (#17)
---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 5c81e65..0c2f1ff 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -60,7 +60,7 @@ RUN yum install -y java-1.8.0-openjdk-devel make gcc-c++ wget && \
   if [ -z "$ZOOKEEPER_FILE" ]; then \
     download "zookeeper.tar.gz" "zookeeper/zookeeper-$ZOOKEEPER_VERSION/apache-zookeeper-$ZOOKEEPER_VERSION-bin.tar.gz"; \
   else \
-    cp "/tmp/$ZOOKEEPER_FILE" "apache-zookeeper.tar.gz"; \
+    cp "/tmp/$ZOOKEEPER_FILE" "zookeeper.tar.gz"; \
   fi; \
   if [ -z "$ACCUMULO_FILE" ]; then \
     download "accumulo.tar.gz" "accumulo/$ACCUMULO_VERSION/accumulo-$ACCUMULO_VERSION-bin.tar.gz"; \