From 73dacb15b1ca2293f4b8e359aa0e9521fe7237a4 Mon Sep 17 00:00:00 2001 From: "skrzyp84@gmail.com" Date: Sun, 28 Jul 2019 12:10:24 +0900 Subject: [PATCH] fix for backend: exec user process caused no such file or directory --- 12-say-grpc/backend/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/12-say-grpc/backend/Makefile b/12-say-grpc/backend/Makefile index 6d7c0568..01998078 100644 --- a/12-say-grpc/backend/Makefile +++ b/12-say-grpc/backend/Makefile @@ -12,7 +12,7 @@ # limitations under the License. build: - GOOS=linux go build -o app + GOOS=linux CGO_ENABLED=0 go build -o app docker build -t gcr.io/justforfunc-prep/say . rm -f app