Skip to content

Commit f707898

Browse files
author
spagno
authored
Added GO_PROXY_GITHUB_USER variable for builder_release container (#160)
1 parent 502d1a6 commit f707898

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

core/python310Action/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
2727
# or build it from a release
2828
FROM golang:1.22 AS builder_release
2929
ARG GO_PROXY_RELEASE_VERSION=1.22@1.24.0
30+
ARG GO_PROXY_GITHUB_USER=apache
3031
RUN curl -sL \
31-
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
32+
https://github.com/${GO_PROXY_GITHUB_USER}/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
3233
| tar xzf -\
3334
&& cd openwhisk-runtime-go-*/main\
3435
&& GO111MODULE=on CGO_ENABLED=0 go build -o /bin/proxy

core/python311Action/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
2727
# or build it from a release
2828
FROM golang:1.22 AS builder_release
2929
ARG GO_PROXY_RELEASE_VERSION=1.22@1.24.0
30+
ARG GO_PROXY_GITHUB_USER=apache
3031
RUN curl -sL \
31-
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
32+
https://github.com/${GO_PROXY_GITHUB_USER}/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
3233
| tar xzf -\
3334
&& cd openwhisk-runtime-go-*/main\
3435
&& GO111MODULE=on CGO_ENABLED=0 go build -o /bin/proxy

core/python312Action/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
2727
# or build it from a release
2828
FROM golang:1.22 AS builder_release
2929
ARG GO_PROXY_RELEASE_VERSION=1.22@1.24.0
30+
ARG GO_PROXY_GITHUB_USER=apache
3031
RUN curl -sL \
31-
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
32+
https://github.com/${GO_PROXY_GITHUB_USER}/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
3233
| tar xzf -\
3334
&& cd openwhisk-runtime-go-*/main\
3435
&& GO111MODULE=on CGO_ENABLED=0 go build -o /bin/proxy

core/python39Action/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
2727
# or build it from a release
2828
FROM golang:1.22 AS builder_release
2929
ARG GO_PROXY_RELEASE_VERSION=1.22@1.24.0
30+
ARG GO_PROXY_GITHUB_USER=apache
3031
RUN curl -sL \
31-
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
32+
https://github.com/${GO_PROXY_GITHUB_USER}/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
3233
| tar xzf -\
3334
&& cd openwhisk-runtime-go-*/main\
3435
&& GO111MODULE=on CGO_ENABLED=0 go build -o /bin/proxy

0 commit comments

Comments
 (0)