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 84df2cf14e41ae273ddd7c46aaaac2eea296475c Author: Michele Sciabarra <[email protected]> AuthorDate: Fri Mar 13 12:24:10 2020 +0100 Use Nimbella snapshot. --- core/python2ActionLoop/Dockerfile | 4 ++-- core/python3ActionLoop/Dockerfile | 5 +++-- core/python3AiActionLoop/Dockerfile | 4 ++-- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/core/python2ActionLoop/Dockerfile b/core/python2ActionLoop/Dockerfile index 043315c..ea45fd8 100644 --- a/core/python2ActionLoop/Dockerfile +++ b/core/python2ActionLoop/Dockerfile @@ -17,7 +17,7 @@ # build go proxy from source FROM golang:1.15 AS builder_source -ARG GO_PROXY_GITHUB_USER=apache +ARG GO_PROXY_GITHUB_USER=nimbella-corp ARG GO_PROXY_GITHUB_BRANCH=master RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \ https://github.com/${GO_PROXY_GITHUB_USER}/openwhisk-runtime-go /src ;\ @@ -35,7 +35,7 @@ RUN curl -sL \ FROM python:2.7-alpine # select the builder to use -ARG GO_PROXY_BUILD_FROM=release +ARG GO_PROXY_BUILD_FROM=source # Upgrade and install basic Python dependencies RUN apk add --no-cache \ diff --git a/core/python3ActionLoop/Dockerfile b/core/python3ActionLoop/Dockerfile index 5edc5d3..dfc799e 100644 --- a/core/python3ActionLoop/Dockerfile +++ b/core/python3ActionLoop/Dockerfile @@ -14,9 +14,10 @@ # See the License for the specific language governing permissions and # limitations under the License. # + # build go proxy from source FROM golang:1.15 AS builder_source -ARG GO_PROXY_GITHUB_USER=apache +ARG GO_PROXY_GITHUB_USER=nimbella-corp ARG GO_PROXY_GITHUB_BRANCH=master RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \ https://github.com/${GO_PROXY_GITHUB_USER}/openwhisk-runtime-go /src ;\ @@ -33,7 +34,7 @@ RUN curl -sL \ && GO111MODULE=on go build -o /bin/proxy FROM python:3.7-buster -ARG GO_PROXY_BUILD_FROM=release +ARG GO_PROXY_BUILD_FROM=source # Install common modules for python RUN pip install \ diff --git a/core/python3AiActionLoop/Dockerfile b/core/python3AiActionLoop/Dockerfile index 114c145..d7d0a96 100644 --- a/core/python3AiActionLoop/Dockerfile +++ b/core/python3AiActionLoop/Dockerfile @@ -17,7 +17,7 @@ # build go proxy from source FROM golang:1.15 AS builder_source -ARG GO_PROXY_GITHUB_USER=apache +ARG GO_PROXY_GITHUB_USER=nimbella-corp ARG GO_PROXY_GITHUB_BRANCH=master RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \ https://github.com/${GO_PROXY_GITHUB_USER}/openwhisk-runtime-go /src ;\ @@ -37,7 +37,7 @@ RUN curl -sL \ FROM tensorflow/tensorflow:1.15.2-py3-jupyter # select the builder to use -ARG GO_PROXY_BUILD_FROM=release +ARG GO_PROXY_BUILD_FROM=source RUN apt-get update && apt-get upgrade -y && apt-get install -y \ curl \
