You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by je...@apache.org on 2018/08/22 17:05:31 UTC

[geode] branch develop updated: GEODE-5613: Add winrm-cli utility to apachegeode-build image (#2355)

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

jensdeppe pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 2e30373  GEODE-5613: Add winrm-cli utility to apachegeode-build image (#2355)
2e30373 is described below

commit 2e30373dbe6ea5348507752c1bc76d16157a5c38
Author: Jens Deppe <jd...@pivotal.io>
AuthorDate: Wed Aug 22 10:05:25 2018 -0700

    GEODE-5613: Add winrm-cli utility to apachegeode-build image (#2355)
---
 ci/docker/Dockerfile | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/ci/docker/Dockerfile b/ci/docker/Dockerfile
index c401cb6..83978e1 100644
--- a/ci/docker/Dockerfile
+++ b/ci/docker/Dockerfile
@@ -52,6 +52,7 @@ RUN chmod +x /usr/local/bin/tini \
     google-cloud-sdk \
     htop \
     jq \
+    make \
     python3 \
     python3-pip \
     python3-setuptools \
@@ -71,6 +72,9 @@ RUN chmod +x /usr/local/bin/tini \
   && mv /opt/selenium/chromedriver /opt/selenium/chromedriver-$CHROME_DRIVER_VERSION \
   && chmod 755 /opt/selenium/chromedriver-$CHROME_DRIVER_VERSION \
   && ln -fs /opt/selenium/chromedriver-$CHROME_DRIVER_VERSION /usr/bin/chromedriver \
+  && git clone https://github.com/masterzen/winrm-cli \
+  && (cd winrm-cli; GOPATH=$PWD PATH=$PATH:$PWD/bin make) \
+  && cp winrm-cli/bin/winrm /usr/local/bin/ \
   && ./cache_dependencies.sh \
   && apt-get clean \
   && rm -rf /var/lib/apt/lists/* \