You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by dg...@apache.org on 2020/09/30 13:41:17 UTC

[openwhisk-runtime-python] 01/02: build proxy from 1.16.0 release of openwhisk-runtime-go

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

dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-python.git

commit beccc133eabea0963acbe96c7321c27bd142588f
Author: David Grove <gr...@us.ibm.com>
AuthorDate: Mon Sep 28 20:52:47 2020 -0400

    build proxy from 1.16.0 release of openwhisk-runtime-go
---
 core/python2ActionLoop/Dockerfile   | 4 ++--
 core/python3ActionLoop/Dockerfile   | 4 ++--
 core/python3AiActionLoop/Dockerfile | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/core/python2ActionLoop/Dockerfile b/core/python2ActionLoop/Dockerfile
index 1624c5d..043315c 100644
--- a/core/python2ActionLoop/Dockerfile
+++ b/core/python2ActionLoop/Dockerfile
@@ -26,7 +26,7 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
 
 # or build it from a release
 FROM golang:1.15 AS builder_release
-ARG GO_PROXY_RELEASE_VERSION=1.12@1.15.0
+ARG GO_PROXY_RELEASE_VERSION=1.15@1.16.0
 RUN curl -sL \
   https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
   | tar xzf -\
@@ -35,7 +35,7 @@ RUN curl -sL \
 
 FROM python:2.7-alpine
 # select the builder to use
-ARG GO_PROXY_BUILD_FROM=source
+ARG GO_PROXY_BUILD_FROM=release
 
 # Upgrade and install basic Python dependencies
 RUN apk add --no-cache \
diff --git a/core/python3ActionLoop/Dockerfile b/core/python3ActionLoop/Dockerfile
index 0ce04cd..5edc5d3 100644
--- a/core/python3ActionLoop/Dockerfile
+++ b/core/python3ActionLoop/Dockerfile
@@ -25,7 +25,7 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
 
 # or build it from a release
 FROM golang:1.15 AS builder_release
-ARG GO_PROXY_RELEASE_VERSION=1.12@1.15.0
+ARG GO_PROXY_RELEASE_VERSION=1.15@1.16.0
 RUN curl -sL \
   https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
   | tar xzf -\
@@ -33,7 +33,7 @@ RUN curl -sL \
   && GO111MODULE=on go build -o /bin/proxy
 
 FROM python:3.7-buster
-ARG GO_PROXY_BUILD_FROM=source
+ARG GO_PROXY_BUILD_FROM=release
 
 # Install common modules for python
 RUN pip install \
diff --git a/core/python3AiActionLoop/Dockerfile b/core/python3AiActionLoop/Dockerfile
index 54c6038..114c145 100644
--- a/core/python3AiActionLoop/Dockerfile
+++ b/core/python3AiActionLoop/Dockerfile
@@ -26,7 +26,7 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
 
 # or build it from a release
 FROM golang:1.15 AS builder_release
-ARG GO_PROXY_RELEASE_VERSION=1.12@1.15.0
+ARG GO_PROXY_RELEASE_VERSION=1.15@1.16.0
 RUN curl -sL \
   https://github.com/apache/openwhisk-runtime-go/archive/${GO_PROXY_RELEASE_VERSION}.tar.gz\
   | tar xzf -\
@@ -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=source
+ARG GO_PROXY_BUILD_FROM=release
 
 RUN apt-get update && apt-get upgrade -y && apt-get install -y \
             curl \