From b175dcf2919d2944be54b145d61998bef9d5aac1 Mon Sep 17 00:00:00 2001 From: James Jeffrey Date: Fri, 7 Jul 2017 10:15:05 -0700 Subject: [PATCH] Just copy func file --- fn/langs/go.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fn/langs/go.go b/fn/langs/go.go index b9d438ccd..264ea80cc 100644 --- a/fn/langs/go.go +++ b/fn/langs/go.go @@ -31,7 +31,7 @@ func (h *GoLangHelper) DockerfileBuildCmds() []string { func (h *GoLangHelper) DockerfileCopyCmds() []string { return []string{ - "COPY --from=build-stage /go/src/func/ /function/", + "COPY --from=build-stage /go/src/func/func /function/", } }