This is an automated email from the ASF dual-hosted git repository. rabbah pushed a commit to branch fix-compile-script in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-python.git
commit 0d545fecbd0a055a00347e0b80effc4334cd9947 Author: Joshua Auerbach <[email protected]> AuthorDate: Wed Feb 24 09:47:15 2021 -0500 Remove OW_EXECUTION_ENV variable (#5) This corrected remote build problems for go 1.15. I'm not sure why the problem occurs or whether this is really the right fix. Experimenting. --- core/python2ActionLoop/Dockerfile | 2 -- core/python3ActionLoop/Dockerfile | 2 -- core/python3AiActionLoop/Dockerfile | 2 -- 3 files changed, 6 deletions(-) diff --git a/core/python2ActionLoop/Dockerfile b/core/python2ActionLoop/Dockerfile index c165012..5b2f3bb 100644 --- a/core/python2ActionLoop/Dockerfile +++ b/core/python2ActionLoop/Dockerfile @@ -86,6 +86,4 @@ ENV OW_COMPILER=/bin/compile ENV OW_LOG_INIT_ERROR=1 # the launcher must wait for an ack ENV OW_WAIT_FOR_ACK=1 -# using the runtime name to identify the execution environment -ENV OW_EXECUTION_ENV=openwhisk/action-python-v2.7 ENTRYPOINT ["/bin/proxy"] diff --git a/core/python3ActionLoop/Dockerfile b/core/python3ActionLoop/Dockerfile index 49ee0d0..ec1c3b0 100644 --- a/core/python3ActionLoop/Dockerfile +++ b/core/python3ActionLoop/Dockerfile @@ -58,8 +58,6 @@ ADD lib/launcher.py /lib/launcher.py ENV OW_LOG_INIT_ERROR=1 # the launcher must wait for an ack ENV OW_WAIT_FOR_ACK=1 -# using the runtime name to identify the execution environment -ENV OW_EXECUTION_ENV=openwhisk/action-python-v3.7 # compiler script ENV OW_COMPILER=/bin/compile diff --git a/core/python3AiActionLoop/Dockerfile b/core/python3AiActionLoop/Dockerfile index 0a61e1d..c1c4a20 100644 --- a/core/python3AiActionLoop/Dockerfile +++ b/core/python3AiActionLoop/Dockerfile @@ -90,8 +90,6 @@ ADD lib/launcher.py /lib/launcher.py ENV OW_LOG_INIT_ERROR=1 # the launcher must wait for an ack ENV OW_WAIT_FOR_ACK=1 -# using the runtime name to identify the execution environment -ENV OW_EXECUTION_ENV=openwhisk/action-python-v3.6-ai # compiler script ENV OW_COMPILER=/bin/compile # use utf-8
