From 466838976847660b009f4b0e03a9b4deb0dd2873 Mon Sep 17 00:00:00 2001 From: David Grove Date: Thu, 2 Jun 2022 17:40:26 -0400 Subject: [PATCH] build actionloop using go 1.18 --- core/rust1.34/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/rust1.34/Dockerfile b/core/rust1.34/Dockerfile index 6c1e38a..51d17c9 100644 --- a/core/rust1.34/Dockerfile +++ b/core/rust1.34/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 -\