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-ruby.git
The following commit(s) were added to refs/heads/master by this push:
new 7bd192b update go proxy to [email protected] (#81)
7bd192b is described below
commit 7bd192b9ffd6a104309e306be3e20e835ecfe1a9
Author: David Grove <[email protected]>
AuthorDate: Fri Sep 15 15:54:22 2023 -0400
update go proxy to [email protected] (#81)
---
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 2ec847e..20a2dc1 100644
--- a/core/ruby2.6ActionLoop/Dockerfile
+++ b/core/ruby2.6ActionLoop/Dockerfile
@@ -16,7 +16,7 @@
#
# build go proxy from source
-FROM golang:1.20 AS builder_source
+FROM golang:1.21 AS builder_source
ARG GO_PROXY_GITHUB_USER=apache
ARG GO_PROXY_GITHUB_BRANCH=master
RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
@@ -25,8 +25,8 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
mv proxy /bin/proxy
# or build it from a release
-FROM golang:1.20 AS builder_release
-ARG [email protected]
+FROM golang:1.21 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 -\