Skip to content

Commit

Permalink
update go proxy to [email protected] (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrove-oss authored Sep 6, 2024
1 parent 41a755d commit 59905b4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions core/python310Action/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#

# build go proxy from source
FROM golang:1.22 AS builder_source
FROM golang:1.23 AS builder_source
ARG GO_PROXY_GITHUB_USER=apache
ARG GO_PROXY_GITHUB_BRANCH=master
RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
Expand All @@ -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.22 AS builder_release
ARG GO_PROXY_RELEASE_VERSION=1.22@1.24.0
FROM golang:1.23 AS builder_release
ARG GO_PROXY_RELEASE_VERSION=1.23@1.25.0
ARG GO_PROXY_GITHUB_USER=apache
RUN curl -sL \
https://github.com/${GO_PROXY_GITHUB_USER}/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
Expand Down
6 changes: 3 additions & 3 deletions core/python311Action/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#

# build go proxy from source
FROM golang:1.22 AS builder_source
FROM golang:1.23 AS builder_source
ARG GO_PROXY_GITHUB_USER=apache
ARG GO_PROXY_GITHUB_BRANCH=master
RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
Expand All @@ -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.22 AS builder_release
ARG GO_PROXY_RELEASE_VERSION=1.22@1.24.0
FROM golang:1.23 AS builder_release
ARG GO_PROXY_RELEASE_VERSION=1.23@1.25.0
ARG GO_PROXY_GITHUB_USER=apache
RUN curl -sL \
https://github.com/${GO_PROXY_GITHUB_USER}/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
Expand Down
6 changes: 3 additions & 3 deletions core/python312Action/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#

# build go proxy from source
FROM golang:1.22 AS builder_source
FROM golang:1.23 AS builder_source
ARG GO_PROXY_GITHUB_USER=apache
ARG GO_PROXY_GITHUB_BRANCH=master
RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
Expand All @@ -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.22 AS builder_release
ARG GO_PROXY_RELEASE_VERSION=1.22@1.24.0
FROM golang:1.23 AS builder_release
ARG GO_PROXY_RELEASE_VERSION=1.23@1.25.0
ARG GO_PROXY_GITHUB_USER=apache
RUN curl -sL \
https://github.com/${GO_PROXY_GITHUB_USER}/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
Expand Down
6 changes: 3 additions & 3 deletions core/python39Action/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#

# build go proxy from source
FROM golang:1.22 AS builder_source
FROM golang:1.23 AS builder_source
ARG GO_PROXY_GITHUB_USER=apache
ARG GO_PROXY_GITHUB_BRANCH=master
RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
Expand All @@ -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.22 AS builder_release
ARG GO_PROXY_RELEASE_VERSION=1.22@1.24.0
FROM golang:1.23 AS builder_release
ARG GO_PROXY_RELEASE_VERSION=1.23@1.25.0
ARG GO_PROXY_GITHUB_USER=apache
RUN curl -sL \
https://github.com/${GO_PROXY_GITHUB_USER}/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
Expand Down

0 comments on commit 59905b4

Please sign in to comment.