Skip to content

Commit 7413669

Browse files
authored
prep for 1.1.0 release (#25)
1 parent 3fdec10 commit 7413669

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

core/rust1.34/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,9 @@
1919

2020
# Rust OpenWhisk Runtime Container
2121

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+
2226
## 1.0.0
2327
- Initial release

core/rust1.34/Dockerfile

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

1818
# build go proxy from source
19-
FROM golang:1.12 AS builder_source
19+
FROM golang:1.15 AS builder_source
2020
RUN env CGO_ENABLED=0 go get github.com/apache/openwhisk-runtime-go/main && mv /go/bin/main /bin/proxy
2121

2222
# 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
2525
RUN curl -sL \
2626
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
2727
| tar xzf -\

0 commit comments

Comments
 (0)