Removed unnecessary RUN command from Dockerfile.build in multistage-build.md (#5750)

This commit is contained in:
Marco Davalos 2018-01-16 18:09:38 +01:00 committed by Misty Stanley-Jones
parent cb3f9aced6
commit 4d2e963b4e
1 changed files with 0 additions and 1 deletions

View File

@ -38,7 +38,6 @@ builder pattern above:
```conf
FROM golang:1.7.3
WORKDIR /go/src/github.com/alexellis/href-counter/
RUN go get -d -v golang.org/x/net/html
COPY app.go .
RUN go get -d -v golang.org/x/net/html \
&& CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app .