From 2b74bce732e3154dec49575c751ff00f7a4637a9 Mon Sep 17 00:00:00 2001 From: David Grove Date: Thu, 2 Jun 2022 17:36:13 -0400 Subject: [PATCH] Update actionloop builder to 1.18 --- core/python36AiAction/Dockerfile | 6 +++--- core/python3Action/Dockerfile | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/python36AiAction/Dockerfile b/core/python36AiAction/Dockerfile index b7c4ac83..dddbe85d 100644 --- a/core/python36AiAction/Dockerfile +++ b/core/python36AiAction/Dockerfile @@ -16,7 +16,7 @@ # # build go proxy from source -FROM golang:1.16 AS builder_source +FROM golang:1.18 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.16 AS builder_release -ARG GO_PROXY_RELEASE_VERSION=1.16@1.19.0 +FROM golang:1.18 AS builder_release +ARG GO_PROXY_RELEASE_VERSION=1.18@1.19.0 RUN curl -sL \ https://github.com/apache/openwhisk-runtime-go/archive/${GO_PROXY_RELEASE_VERSION}.tar.gz\ | tar xzf -\ diff --git a/core/python3Action/Dockerfile b/core/python3Action/Dockerfile index 90aa17b6..85d17e9d 100644 --- a/core/python3Action/Dockerfile +++ b/core/python3Action/Dockerfile @@ -16,7 +16,7 @@ # # build go proxy from source -FROM golang:1.16 AS builder_source +FROM golang:1.18 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.16 AS builder_release -ARG GO_PROXY_RELEASE_VERSION=1.16@1.19.0 +FROM golang:1.18 AS builder_release +ARG GO_PROXY_RELEASE_VERSION=1.18@1.19.0 RUN curl -sL \ https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\ | tar xzf -\