You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ms...@apache.org on 2020/03/28 20:55:55 UTC

[openwhisk] branch master updated: Add -i to docker command, otherwise doesnt work (#4864)

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

msciabarra pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new 37c1236  Add -i to docker command, otherwise doesnt work (#4864)
37c1236 is described below

commit 37c123655321043a33b818d4382dfa75f9871397
Author: Peter Nemere <sn...@gmail.com>
AuthorDate: Sun Mar 29 06:55:44 2020 +1000

    Add -i to docker command, otherwise doesnt work (#4864)
---
 docs/actions-go.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/actions-go.md b/docs/actions-go.md
index c83fbfd..6a6009a 100644
--- a/docs/actions-go.md
+++ b/docs/actions-go.md
@@ -180,7 +180,7 @@ If you have multiple sources in current directory, even with a subfolder with so
 cd src
 zip -r ../src.zip *
 cd ..
-docker run openwhisk/action-golang-v1.11 -compile main <src.zip >exec.zip
+docker -i run openwhisk/action-golang-v1.11 -compile main <src.zip >exec.zip
 ```
 
 Note that the output is always a zip file in  Linux AMD64 format so the executable can be run only inside a Docker Linux container.