This is an automated email from the ASF dual-hosted git repository.
rabbah pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-ruby.git
The following commit(s) were added to refs/heads/master by this push:
new fe54839 build proxy using golang 1.15 and openwhisk-runtime-go 1.16.0
(#48)
fe54839 is described below
commit fe54839a31ca1b9b33a820f7213db64f71a5be0d
Author: David Grove <[email protected]>
AuthorDate: Tue Sep 29 11:02:53 2020 -0400
build proxy using golang 1.15 and openwhisk-runtime-go 1.16.0 (#48)
---
core/ruby2.6ActionLoop/Dockerfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/core/ruby2.6ActionLoop/Dockerfile
b/core/ruby2.6ActionLoop/Dockerfile
index 9744787..6272cd2 100644
--- a/core/ruby2.6ActionLoop/Dockerfile
+++ b/core/ruby2.6ActionLoop/Dockerfile
@@ -16,12 +16,12 @@
#
# build go proxy from source
-FROM golang:1.12 AS builder_source
+FROM golang:1.15 AS builder_source
RUN env CGO_ENABLED=0 go get github.com/apache/openwhisk-runtime-go/main && mv
/go/bin/main /bin/proxy
# or build it from a release
-FROM golang:1.12 AS builder_release
-ARG [email protected]
+FROM golang:1.15 AS builder_release
+ARG [email protected]
RUN curl -sL \
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
| tar xzf -\