mirror of https://github.com/docker/docs.git
Removed unnecessary RUN command from Dockerfile.build in multistage-build.md (#5750)
This commit is contained in:
parent
cb3f9aced6
commit
4d2e963b4e
|
|
@ -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 .
|
||||
|
|
|
|||
Loading…
Reference in New Issue