You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openwhisk.apache.org by GitBox <gi...@apache.org> on 2018/11/30 20:39:26 UTC

[GitHub] dgrove-oss closed pull request #4144: add wskdeploy to scriptRunner Dockerfile

dgrove-oss closed pull request #4144: add wskdeploy to scriptRunner Dockerfile
URL: https://github.com/apache/incubator-openwhisk/pull/4144
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/tools/scriptRunner/Dockerfile b/tools/scriptRunner/Dockerfile
index 5cc2be2303..868a4d5562 100644
--- a/tools/scriptRunner/Dockerfile
+++ b/tools/scriptRunner/Dockerfile
@@ -14,6 +14,12 @@ RUN wget -q https://github.com/apache/incubator-openwhisk-cli/releases/download/
     tar xzf OpenWhisk_CLI-$WHISK_CLI_VERSION-linux-amd64.tgz -C /usr/local/bin wsk && \
     rm OpenWhisk_CLI-$WHISK_CLI_VERSION-linux-amd64.tgz
 
+# Install `wskdeploy` cli in /usr/local/bin
+ENV WHISKDEPLOY_CLI_VERSION latest
+RUN wget -q https://github.com/apache/incubator-openwhisk-wskdeploy/releases/download/$WHISKDEPLOY_CLI_VERSION/openwhisk_wskdeploy-$WHISKDEPLOY_CLI_VERSION-linux-amd64.tgz && \
+    tar xzf openwhisk_wskdeploy-$WHISK_CLI_VERSION-linux-amd64.tgz -C /usr/local/bin wskdeploy && \
+    rm openwhisk_wskdeploy-$WHISK_CLI_VERSION-linux-amd64.tgz
+
 COPY init.sh /init.sh
 RUN chmod +x /init.sh
 


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services