remove -v from go-build dockerfiles

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
This commit is contained in:
Ahmet Alp Balkan 2018-06-21 12:40:07 -07:00
parent f06818db0c
commit 4ade7ddb29
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ RUN apk add --no-cache ca-certificates git
WORKDIR /src/microservices-demo/catalogservice
COPY . .
RUN go get -d ./...
RUN go build -v -o /catalogservice .
RUN go build -o /catalogservice .
FROM alpine as release
RUN apk add --no-cache \

View File

@ -5,7 +5,7 @@ RUN apk add --no-cache \
WORKDIR /src/microservices-demo/productcatalogservice
COPY . .
RUN go get -d ./...
RUN go build -v -o /productcatalogservice .
RUN go build -o /productcatalogservice .
FROM alpine as release
RUN apk add --no-cache \

View File

@ -5,7 +5,7 @@ RUN apk add --no-cache \
WORKDIR /src/microservices-demo/shippingservice
COPY . .
RUN go get -d ./...
RUN go build -v -o /shippingservice .
RUN go build -o /shippingservice .
FROM alpine as release
COPY --from=builder /shippingservice /shippingservice