File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 19
19
20
20
# Rust OpenWhisk Runtime Container
21
21
22
+ ## 1.1.0
23
+ - Move from golang:1.12 to golang:1.15 to build the runtime proxy.
24
+ - Build proxy from openwhisk-runtime-go 1.16.0 release
25
+
22
26
## 1.0.0
23
27
- Initial release
Original file line number Diff line number Diff line change 16
16
#
17
17
18
18
# build go proxy from source
19
- FROM golang:1.12 AS builder_source
19
+ FROM golang:1.15 AS builder_source
20
20
RUN env CGO_ENABLED=0 go get github.com/apache/openwhisk-runtime-go/main && mv /go/bin/main /bin/proxy
21
21
22
22
# or build it from a release
23
- FROM golang:1.12 AS builder_release
24
- ARG GO_PROXY_RELEASE_VERSION=1.12 @1.15 .0
23
+ FROM golang:1.15 AS builder_release
24
+ ARG GO_PROXY_RELEASE_VERSION=1.15 @1.16 .0
25
25
RUN curl -sL \
26
26
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
27
27
| tar xzf -\
You can’t perform that action at this time.
0 commit comments