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-java.git
The following commit(s) were added to refs/heads/master by this push:
new 533228a build actionloop from [email protected] (#125)
533228a is described below
commit 533228a50bcb6fc3fbaf98c014ff075ad902d470
Author: David Grove <[email protected]>
AuthorDate: Mon Aug 2 11:12:27 2021 -0400
build actionloop from [email protected] (#125)
---
core/java8actionloop/Dockerfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/core/java8actionloop/Dockerfile b/core/java8actionloop/Dockerfile
index 5261fad..782dd9b 100644
--- a/core/java8actionloop/Dockerfile
+++ b/core/java8actionloop/Dockerfile
@@ -16,7 +16,7 @@
#
# build go proxy from source
-FROM golang:1.15 AS builder_source
+FROM golang:1.16 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.15 AS builder_release
-ARG [email protected]
+FROM golang:1.16 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 -\