Skip to content

Commit 6925989

Browse files
authored
build actionloop from 1.16@1.18.0 (#113)
1 parent 14a31cf commit 6925989

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

core/python36AiAction/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717

1818
# build go proxy from source
19-
FROM golang:1.15 AS builder_source
19+
FROM golang:1.16 AS builder_source
2020
ARG GO_PROXY_GITHUB_USER=apache
2121
ARG GO_PROXY_GITHUB_BRANCH=master
2222
RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
@@ -25,8 +25,8 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
2525
mv proxy /bin/proxy
2626

2727
# or build it from a release
28-
FROM golang:1.15 AS builder_release
29-
ARG GO_PROXY_RELEASE_VERSION=1.15@1.17.0
28+
FROM golang:1.16 AS builder_release
29+
ARG GO_PROXY_RELEASE_VERSION=1.16@1.18.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 \

core/python39Action/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717

1818
# build go proxy from source
19-
FROM golang:1.15 AS builder_source
19+
FROM golang:1.16 AS builder_source
2020
ARG GO_PROXY_GITHUB_USER=apache
2121
ARG GO_PROXY_GITHUB_BRANCH=master
2222
RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
@@ -25,8 +25,8 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
2525
mv proxy /bin/proxy
2626

2727
# or build it from a release
28-
FROM golang:1.15 AS builder_release
29-
ARG GO_PROXY_RELEASE_VERSION=1.15@1.17.0
28+
FROM golang:1.16 AS builder_release
29+
ARG GO_PROXY_RELEASE_VERSION=1.16@1.18.0
3030
RUN curl -sL \
3131
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
3232
| tar xzf -\
@@ -36,7 +36,7 @@ RUN curl -sL \
3636
FROM python:3.9-buster
3737

3838
# select the builder to use
39-
ARG GO_PROXY_BUILD_FROM=source
39+
ARG GO_PROXY_BUILD_FROM=release
4040

4141
# Install common modules for python
4242
COPY requirements.txt requirements.txt

core/python3Action/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717

1818
# build go proxy from source
19-
FROM golang:1.15 AS builder_source
19+
FROM golang:1.16 AS builder_source
2020
ARG GO_PROXY_GITHUB_USER=apache
2121
ARG GO_PROXY_GITHUB_BRANCH=master
2222
RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
@@ -25,8 +25,8 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
2525
mv proxy /bin/proxy
2626

2727
# or build it from a release
28-
FROM golang:1.15 AS builder_release
29-
ARG GO_PROXY_RELEASE_VERSION=1.15@1.17.0
28+
FROM golang:1.16 AS builder_release
29+
ARG GO_PROXY_RELEASE_VERSION=1.16@1.18.0
3030
RUN curl -sL \
3131
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
3232
| tar xzf -\
@@ -36,7 +36,7 @@ RUN curl -sL \
3636
FROM python:3.7-buster
3737

3838
# select the builder to use
39-
ARG GO_PROXY_BUILD_FROM=source
39+
ARG GO_PROXY_BUILD_FROM=release
4040

4141
# Install common modules for python
4242
COPY requirements.txt requirements.txt

0 commit comments

Comments
 (0)