From 459625e0384194d7a1b9c051d97f6c13f8b8f3ff Mon Sep 17 00:00:00 2001 From: pmcgrath Date: Sun, 19 Oct 2014 12:05:00 +0100 Subject: [PATCH] Restored comma as suggested by the code style guide, thanks tianan --- golang/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/golang/content.md b/golang/content.md index c4d7e30fb..7e2383ae3 100644 --- a/golang/content.md +++ b/golang/content.md @@ -21,7 +21,7 @@ the lines of the following will compile and run your project: FROM golang:1.3.1-onbuild This image includes multiple `ONBUILD` triggers which should cover most -applications. The build will `COPY . /usr/src/app`, `RUN go get -d -v` and `RUN +applications. The build will `COPY . /usr/src/app`, `RUN go get -d -v`, and `RUN go install -v`. This image also includes the `CMD ["app"]` instruction which is the default command