Better support for writing functions in go

This commit is contained in:
Phillip Wittrock
2020-04-30 13:33:56 -07:00
parent 46316198cb
commit b579bf2b03
12 changed files with 997 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
# Copyright 2019 The Kubernetes Authors.
# SPDX-License-Identifier: Apache-2.0
FROM golang:1.13-stretch
ENV CGO_ENABLED=0
WORKDIR /go/src/
COPY . .
RUN go build -v -o /usr/local/bin/function ./
FROM alpine:latest
COPY --from=0 /usr/local/bin/function /usr/local/bin/function
CMD ["function"]