From 80f5857ca2834074e93577f636b3575aaf2e9027 Mon Sep 17 00:00:00 2001 From: Rodric Rabbah Date: Sun, 28 Feb 2021 20:46:57 -0500 Subject: [PATCH] Use nimbella dev branch for go proxy. --- core/python3ActionLoop/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/python3ActionLoop/Dockerfile b/core/python3ActionLoop/Dockerfile index 5e882b2d..da898f39 100644 --- a/core/python3ActionLoop/Dockerfile +++ b/core/python3ActionLoop/Dockerfile @@ -16,6 +16,7 @@ # # build go proxy from source FROM golang:1.15 AS builder_source + ARG GO_PROXY_GITHUB_USER=apache ARG GO_PROXY_GITHUB_BRANCH=master RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \ @@ -33,6 +34,8 @@ RUN curl -sL \ && GO111MODULE=on go build -o /bin/proxy FROM python:3.7-buster + +# select the builder to use ARG GO_PROXY_BUILD_FROM=release # Install common modules for python @@ -66,4 +69,3 @@ ENV OW_EXECUTION_ENV=openwhisk/action-python-v3.7 ENV OW_COMPILER=/bin/compile ENTRYPOINT ["/bin/proxy"] -