diff options
author | mattn <mattn.jp@gmail.com> | 2022-05-18 11:21:26 +0900 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2022-05-18 11:53:00 +0900 |
commit | 43dcd3131f439b55061cb3426cfd1ee3ec04562d (patch) | |
tree | aeef70761e34554ef25b1adbcdb253992951a50e | |
parent | feat: simple example of Dockerfile w/ multi-stage build (diff) | |
download | golite-43dcd3131f439b55061cb3426cfd1ee3ec04562d.tar.gz golite-43dcd3131f439b55061cb3426cfd1ee3ec04562d.tar.xz |
Update _example/simple/Dockerfile
-rw-r--r-- | _example/simple/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_example/simple/Dockerfile b/_example/simple/Dockerfile index 2a5b472..58f5ffd 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 |