go test -cover is not supported on armh

This commit is contained in:
zbrown 2018-12-20 09:59:09 -05:00
parent 1a45326c96
commit 7eb1918df2

View File

@ -6,7 +6,7 @@ RUN mkdir -p /build
WORKDIR /build
COPY . .
RUN go test -race -cover ./...
RUN go test -cover ./...
RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o /serve /build/bin/serve
FROM scratch