Skip to content

Commit beccc13

Browse files
committed
build proxy from 1.16.0 release of openwhisk-runtime-go
1 parent 8874202 commit beccc13

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

core/python2ActionLoop/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
2626

2727
# or build it from a release
2828
FROM golang:1.15 AS builder_release
29-
ARG GO_PROXY_RELEASE_VERSION=1.12@1.15.0
29+
ARG GO_PROXY_RELEASE_VERSION=1.15@1.16.0
3030
RUN curl -sL \
3131
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
3232
| tar xzf -\
@@ -35,7 +35,7 @@ RUN curl -sL \
3535

3636
FROM python:2.7-alpine
3737
# select the builder to use
38-
ARG GO_PROXY_BUILD_FROM=source
38+
ARG GO_PROXY_BUILD_FROM=release
3939

4040
# Upgrade and install basic Python dependencies
4141
RUN apk add --no-cache \

core/python3ActionLoop/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
2525

2626
# or build it from a release
2727
FROM golang:1.15 AS builder_release
28-
ARG GO_PROXY_RELEASE_VERSION=1.12@1.15.0
28+
ARG GO_PROXY_RELEASE_VERSION=1.15@1.16.0
2929
RUN curl -sL \
3030
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
3131
| tar xzf -\
3232
&& cd openwhisk-runtime-go-*/main\
3333
&& GO111MODULE=on go build -o /bin/proxy
3434

3535
FROM python:3.7-buster
36-
ARG GO_PROXY_BUILD_FROM=source
36+
ARG GO_PROXY_BUILD_FROM=release
3737

3838
# Install common modules for python
3939
RUN pip install \

core/python3AiActionLoop/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
2626

2727
# or build it from a release
2828
FROM golang:1.15 AS builder_release
29-
ARG GO_PROXY_RELEASE_VERSION=1.12@1.15.0
29+
ARG GO_PROXY_RELEASE_VERSION=1.15@1.16.0
3030
RUN curl -sL \
3131
https://github.com/apache/openwhisk-runtime-go/archive/${GO_PROXY_RELEASE_VERSION}.tar.gz\
3232
| tar xzf -\
@@ -37,7 +37,7 @@ RUN curl -sL \
3737
FROM tensorflow/tensorflow:1.15.2-py3-jupyter
3838

3939
# select the builder to use
40-
ARG GO_PROXY_BUILD_FROM=source
40+
ARG GO_PROXY_BUILD_FROM=release
4141

4242
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
4343
curl \

0 commit comments

Comments
 (0)