File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
16
#
17
- FROM openwhisk/actionloop-v2:4376fee as builder
17
+ FROM golang:1.11 as builder
18
+ ENV PROXY_SOURCE=https://github.com/apache/incubator-openwhisk-runtime-go/archive/golang1.11@1.13.0-incubating.tar.gz
19
+ RUN curl -L "$PROXY_SOURCE" | tar xzf - \
20
+ && mkdir -p src/github.com/apache \
21
+ && mv incubator-openwhisk-runtime-go-golang1.11-1.13.0-incubating \
22
+ src/github.com/apache/incubator-openwhisk-runtime-go \
23
+ && cd src/github.com/apache/incubator-openwhisk-runtime-go/main \
24
+ && CGO_ENABLED=0 go build -o /bin/proxy
18
25
FROM rust:1.34
19
26
COPY --from=builder /bin/proxy /bin/proxy
20
27
RUN mkdir -p /action
You can’t perform that action at this time.
0 commit comments