From 43dcd3131f439b55061cb3426cfd1ee3ec04562d Mon Sep 17 00:00:00 2001 From: mattn Date: Wed, 18 May 2022 11:21:26 +0900 Subject: [PATCH] Update _example/simple/Dockerfile --- _example/simple/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_example/simple/Dockerfile b/_example/simple/Dockerfile index 2a5b4723..58f5ffd8 100644 --- a/_example/simple/Dockerfile +++ b/_example/simple/Dockerfile @@ -28,7 +28,7 @@ COPY . /workspace/ RUN \ go mod init github.com/mattn/sample && \ go mod tidy && \ - go install -ldflags="-s -w -extldflags \"-static\"" ./simple.go + go install -ldflags='-s -w -extldflags "-static"' ./simple.go RUN \ # Smoke test